system.nim: fixes typo

(cherry picked from commit fe091997aa)
This commit is contained in:
Araq
2018-10-15 02:38:04 +02:00
committed by narimiran
parent ee18699609
commit 4f432688a3

View File

@@ -2109,7 +2109,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