mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 20:17:42 +00:00
system.nim: fixes typo
This commit is contained in:
@@ -2132,7 +2132,7 @@ when defined(nimNewRoof):
|
||||
template dotdotImpl(t) {.dirty.} =
|
||||
iterator `..`*(a, b: t): t {.inline.} =
|
||||
## A type specialized version of ``..`` for convenience so that
|
||||
## mixing integer types work better.
|
||||
## mixing integer types works better.
|
||||
var res = a
|
||||
while res <= b:
|
||||
yield res
|
||||
|
||||
Reference in New Issue
Block a user