aboutsummaryrefslogtreecommitdiff
path: root/lib/lib.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-11-16 16:16:12 -0800
committerRob Landley <rob@landley.net>2017-12-03 01:27:32 -0600
commit7ce9c2d1f60cb36a2a33dcf420f62d220b28edb2 (patch)
tree1cd7a1462346733ce7fce07209d02bcc69d1d753 /lib/lib.c
parent247d7556a32cbcdc1fadd3a32072936b786e9be5 (diff)
downloadtoybox-7ce9c2d1f60cb36a2a33dcf420f62d220b28edb2.tar.gz
Don't capitalize in the middle of a sentence.
Before: toy: Unknown option p (See "toy --help") After: toy: Unknown option p (see "toy --help")
Diffstat (limited to 'lib/lib.c')
-rw-r--r--lib/lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib.c b/lib/lib.c
index 80570ed1..651593e0 100644
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -14,7 +14,7 @@ void verror_msg(char *msg, int err, va_list va)
else s+=2;
if (err>0) fprintf(stderr, s, strerror(err));
if (err<0 && CFG_TOYBOX_HELP)
- fprintf(stderr, " (See \"%s --help\")", toys.which->name);
+ fprintf(stderr, " (see \"%s --help\")", toys.which->name);
if (msg || err) putc('\n', stderr);
if (!toys.exitval) toys.exitval++;
}