diff options
author | Elliott Hughes <enh@google.com> | 2017-11-16 16:16:12 -0800 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2017-12-03 01:27:32 -0600 |
commit | 7ce9c2d1f60cb36a2a33dcf420f62d220b28edb2 (patch) | |
tree | 1cd7a1462346733ce7fce07209d02bcc69d1d753 | |
parent | 247d7556a32cbcdc1fadd3a32072936b786e9be5 (diff) | |
download | toybox-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")
-rw-r--r-- | lib/lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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++; } |