From 9a8dc0e44f868ebe17b573f7bc70ed81f28accec Mon Sep 17 00:00:00 2001 From: "Aode (Lion)" Date: Mon, 21 Mar 2022 21:18:51 -0500 Subject: [PATCH] Fix sled cache capacity help text --- src/config.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index c9285da..ecbe427 100644 --- a/src/config.rs +++ b/src/config.rs @@ -75,7 +75,10 @@ pub(crate) struct Overrides { #[serde(skip_serializing_if = "Option::is_none")] max_image_area: Option, - #[structopt(long, help = "Specify the maximum area in pixels allowed in an image")] + #[structopt( + long, + help = "Specify the number of bytes sled is allowed to use for it's cache" + )] #[serde(skip_serializing_if = "Option::is_none")] sled_cache_capacity: Option,