From daecd90c67de23a7fb096750668b9e300bd4bcf6 Mon Sep 17 00:00:00 2001 From: "D. Bohdan" Date: Fri, 29 Sep 2023 09:13:42 +0000 Subject: [PATCH] fix(cli): fix inconsistent capitalization --- README.md | 2 +- cli.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2a2fdea..40430a6 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ commands: options: -5, --15-bit 15-bit color -6, --16-bit 16-bit color - -n, --no-dither Do not dither the image + -n, --no-dither do not dither the image ``` ## Building diff --git a/cli.c b/cli.c index 7970e54..a829192 100644 --- a/cli.c +++ b/cli.c @@ -380,7 +380,7 @@ void help() "\noptions:\n" " -5, --15-bit 15-bit color\n" " -6, --16-bit 16-bit color\n" - " -n, --no-dither Do not dither the image\n" + " -n, --no-dither do not dither the image\n" ); }