make 'nim doc2 system.nim' work again

This commit is contained in:
Andreas Rumpf
2017-11-07 15:52:28 +01:00
parent bb5bab1b74
commit 157d48bc32

View File

@@ -2016,14 +2016,14 @@ when defined(nimNewRoof):
inc(res)
iterator `..`*(a, b: int64): int64 {.inline.} =
## A special version of `..`` for ``int64`` only.
## A special version of ``..`` for ``int64`` only.
var res = a
while res <= b:
yield res
inc(res)
iterator `..`*(a, b: int32): int32 {.inline.} =
## A special version of `..`` for ``int32`` only.
## A special version of ``..`` for ``int32`` only.
var res = a
while res <= b:
yield res