From 7ce9c2d1f60cb36a2a33dcf420f62d220b28edb2 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 16 Nov 2017 16:16:12 -0800 Subject: 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") --- lib/lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++; } -- cgit v1.2.3