summary refs log tree commit diff stats
path: root/tests/iter/titer3.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/iter/titer3.nim')
-rw-r--r--tests/iter/titer3.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/iter/titer3.nim b/tests/iter/titer3.nim
index 9dcfd7be5..defd56c98 100644
--- a/tests/iter/titer3.nim
+++ b/tests/iter/titer3.nim
@@ -26,7 +26,7 @@ var x = [[1, 2, 3], [4, 5, 6]]
 for y in iter1(x[0]): write(stdout, $y)
 writeLine(stdout, "")
 
-# ensure closure and inline iterators have the same behaviour wrt
+# ensure closure and inline iterators have the same behaviour regarding
 # parameter passing
 
 iterator clo(a: int): int {.closure.} =