summary refs log tree commit diff stats
path: root/tests/iter/titer3.nim
diff options
context:
space:
mode:
authorflywind <xzsflywind@gmail.com>2021-08-22 12:21:53 +0800
committerGitHub <noreply@github.com>2021-08-22 06:21:53 +0200
commit061a9183f7b49289b05cf134893d703760f467a7 (patch)
tree8e01a93fc389b60f51738a8e5755e12d2f943bba /tests/iter/titer3.nim
parent5b26f2bd81d6fc7d48befbfb4fa3317f713af787 (diff)
downloadNim-061a9183f7b49289b05cf134893d703760f467a7.tar.gz
replace wrt with proper word (#18724)
* what does wrt mean?

* clarify
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.} =