diff --git a/README.md b/README.md index 0a84800..e21428d 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Options: -p, --palette Generate a color palette from Wallpaper -d, --daemon Enable Daemon Watchdog mode, will resplit on Output changes --force-resplit Force Resplit, skips all Image Cache checks - -a, --align Don't downscale the Base Image, align the Layout instead [possible values: tl, tr, bl, br, c] + -a, --align Do not downscale the Base Image, align the Layout instead [possible values: tl, tr, bl, br, c] -h, --help Print help -V, --version Print version ``` diff --git a/src/parser.rs b/src/parser.rs index 108398d..6faa5c0 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -40,7 +40,7 @@ struct Args { #[arg(long)] force_resplit: bool, - /// Don't downscale the Base Image, align the Layout instead + /// Do not downscale the Base Image, align the Layout instead #[arg(short, long, value_enum)] align: Option, }