diff options
Diffstat (limited to 'tests/iter')
-rw-r--r-- | tests/iter/tchainediterators.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/iter/tchainediterators.nim b/tests/iter/tchainediterators.nim index 18d096761..8d9f44a54 100644 --- a/tests/iter/tchainediterators.nim +++ b/tests/iter/tchainediterators.nim @@ -28,7 +28,7 @@ iterator foo[T](x: iterator: T{.inline.}): T = var s = @[1, 2, 3] -# pass an interator several levels deep: +# pass an iterator several levels deep: for x in s.items.foo: echo x |