diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-11-07 15:52:28 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-11-07 15:52:28 +0100 |
commit | 157d48bc3208720af98ac5ed60a08494ddc5e328 (patch) | |
tree | feae5a1125ecbee7f91b07694f727639a5b22107 /lib | |
parent | bb5bab1b7484634a2bfcfeff0d6fc5af6242980b (diff) | |
download | Nim-157d48bc3208720af98ac5ed60a08494ddc5e328.tar.gz |
make 'nim doc2 system.nim' work again
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim index 4587daf07..00dd00bc0 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -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 |