diff options
author | Ori Bernstein <ori@eigenstate.org> | 2020-03-10 10:09:34 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2020-03-10 10:09:34 -0700 |
commit | 5bc9b0c3cac34864d479c099283793ec4ae5565e (patch) | |
tree | 943d06d59dfd6c13cc0a724a3118d5099b264884 /sys/src/cmd/mothra | |
parent | 06ea44c895a5f97b7b9b65fce84dec2700f443fb (diff) |
improve usage messages (thanks henesy)
Fix inconsistencies between programs and their usage
messages, correct instances where information seems
to be missing or lost. This includes missing arguments,
making usage consistent with manuals, and so on.
Diffstat (limited to 'sys/src/cmd/mothra')
-rw-r--r-- | sys/src/cmd/mothra/mothra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/mothra/mothra.c b/sys/src/cmd/mothra/mothra.c index 165e65620..9e30836e9 100644 --- a/sys/src/cmd/mothra/mothra.c +++ b/sys/src/cmd/mothra/mothra.c @@ -331,7 +331,7 @@ void main(int argc, char *argv[]){ switch(argc){ default: Usage: - fprint(2, "Usage: %s [-dvak] [-m mtpt] [url]\n", argv0); + fprint(2, "usage: %s [-dvak] [-m mtpt] [url]\n", argv0); exits("usage"); case 0: url=getenv("url"); |