aboutsummaryrefslogtreecommitdiff
path: root/toys/net/netcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/net/netcat.c')
-rw-r--r--toys/net/netcat.c2
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;