diff options
author | Elliott Hughes <enh@google.com> | 2019-02-22 19:37:24 -0800 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-02-23 08:27:32 -0600 |
commit | 42af2e52e771dd7bf8be6fd1119520d492bb4b3f (patch) | |
tree | 313385b3e7ac5f05f698d007162242ecc27c1927 /toys/net | |
parent | aa5ddae1bae1b0cfdef15c3c1cd20b4cee97c182 (diff) | |
download | toybox-42af2e52e771dd7bf8be6fd1119520d492bb4b3f.tar.gz |
Bumper typo cleanup.
Inspired by some of the small patches that have gone by recently.
Limited to only things found in `generated/help.h`, plus a wider cleanup
for the more common "milisecond" typo.
Diffstat (limited to 'toys/net')
-rw-r--r-- | toys/net/netcat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/net/netcat.c b/toys/net/netcat.c index e98f12b2..673d5d19 100644 --- a/toys/net/netcat.c +++ b/toys/net/netcat.c @@ -74,7 +74,7 @@ void netcat_main(void) int family = AF_UNSPEC, type = SOCK_STREAM; pid_t child; - // Addjust idle and quit_delay to miliseconds or -1 for no timeout + // Addjust idle and quit_delay to ms or -1 for no timeout TT.W = TT.W ? TT.W*1000 : -1; TT.q = TT.q ? TT.q*1000 : -1; |