aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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++;
}