diff options
author | Elliott Hughes <enh@google.com> | 2018-12-04 14:22:12 -0800 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-12-04 17:08:19 -0600 |
commit | 141a075c0e192dc9910e777270114b1864270bfd (patch) | |
tree | 2d62f0cedc34773310b23b3d8f55f577cbbaf9db /toys/pending | |
parent | bcf244f3e6ff3c76536063bc5f7d684c6fd4e3fd (diff) | |
download | toybox-141a075c0e192dc9910e777270114b1864270bfd.tar.gz |
Clean up some --help formatting.
Be consistent about upper versus lower case. (Upper seems to have the
majority, so I went with that, though I'm happy to provide the opposite
patch as long as we're consistent!)
Be consistent about using \t. (Though saving a few bytes seems like it
might be better done in the code that generates help.h rather than
directly in the source, since tabs make careful ASCII art layout hard
enough that we regularly have things misaligned.)
Remove trailing periods (most of which seem to have been added by me).
Always use the US "human readable" rather than my British
"human-readable", and be more consistent about declaring whether we're
showing multiples of 1000 or 1024.
Just say "verbose" rather than adding a useless "mode" or "output".
Diffstat (limited to 'toys/pending')
-rw-r--r-- | toys/pending/stty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/pending/stty.c b/toys/pending/stty.c index 8c4754af..df12526b 100644 --- a/toys/pending/stty.c +++ b/toys/pending/stty.c @@ -15,8 +15,8 @@ config STTY Get/set terminal configuration. -F Open device instead of stdin - -a Show all current settings (default differences from "sane"). - -g Show all current settings usable as input to stty. + -a Show all current settings (default differences from "sane") + -g Show all current settings usable as input to stty Special characters (syntax ^c or undef): intr quit erase kill eof eol eol2 swtch start stop susp rprnt werase lnext discard |