diff options
author | flywind <xzsflywind@gmail.com> | 2021-08-22 12:21:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-22 06:21:53 +0200 |
commit | 061a9183f7b49289b05cf134893d703760f467a7 (patch) | |
tree | 8e01a93fc389b60f51738a8e5755e12d2f943bba /tests/iter/titer3.nim | |
parent | 5b26f2bd81d6fc7d48befbfb4fa3317f713af787 (diff) | |
download | Nim-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.nim | 2 |
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.} = |