summary refs log tree commit diff stats
path: root/lib/system.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/system.nim')
-rw-r--r--lib/system.nim4
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