about summary refs log tree commit diff stats
path: root/src/main.nim
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2023-09-06 00:03:00 +0200
committerbptato <nincsnevem662@gmail.com>2023-09-06 00:03:00 +0200
commit8ec81084435a1516f021299130228d6ffe6bb389 (patch)
treedd9250e4d03f0a05ea1c87f72d10a4f3d57a3853 /src/main.nim
parentededd7387923363a43e0bf2dc618725d67b1763c (diff)
downloadchawan-8ec81084435a1516f021299130228d6ffe6bb389.tar.gz
fix typo
Diffstat (limited to 'src/main.nim')
-rw-r--r--src/main.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.nim b/src/main.nim
index 2d4c987b..e98312bc 100644
--- a/src/main.nim
+++ b/src/main.nim
@@ -130,8 +130,8 @@ while i < params.len:
       # If param.len is 0, we just interpret param as a single dash `-',
       # which is ignored.
       # (Some programs use single-dash to read from stdin, but we do that
-      # automatically stdin is not a tty. So ignoring it entirely is probably
-      # for the best.)
+      # automatically when stdin is not a tty. So ignoring it entirely
+      # is probably for the best.)
       for j in 1 ..< param.len:
         if j != param.high and param[j] in NeedsNextParam:
           # expecting next parameter, but not the last char...