system.nim: fixes typo

This commit is contained in:
Araq
2018-10-15 02:38:04 +02:00
parent b39302b0d2
commit fe091997aa

View File

@@ -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