summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2015-06-04 11:37:45 +0200
committerAndreas Rumpf <rumpf_a@web.de>2015-06-04 11:37:45 +0200
commit86f58a002db2683d3cb6e2841a2f234fd048bb6c (patch)
tree9c1167716ac7b260ea7fe6020d22ccf53505daf7
parent8264c3cbeef6a4b86f7613c05d036658cbd9a24d (diff)
parent860da53db50d515df54d24241529388d96eafc1a (diff)
downloadNim-86f58a002db2683d3cb6e2841a2f234fd048bb6c.tar.gz
Merge pull request #2861 from apense/patch-5
Added slight explanation for count{down|up}
-rw-r--r--lib/system.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 205a68685..fbb3cbfc7 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -1578,7 +1578,7 @@ else:
   type IntLikeForCount = int|int8|int16|int32|char|bool|uint8|uint16|enum
 
 iterator countdown*[T](a, b: T, step = 1): T {.inline.} =
-  ## Counts from ordinal value `a` down to `b` with the given
+  ## Counts from ordinal value `a` down to `b` (inclusive) with the given
   ## step count. `T` may be any ordinal type, `step` may only
   ## be positive. **Note**: This fails to count to ``low(int)`` if T = int for
   ## efficiency reasons.
@@ -1606,7 +1606,7 @@ template countupImpl(incr: stmt) {.immediate, dirty.} =
       incr
 
 iterator countup*[S, T](a: S, b: T, step = 1): T {.inline.} =
-  ## Counts from ordinal value `a` up to `b` with the given
+  ## Counts from ordinal value `a` up to `b` (inclusive) with the given
   ## step count. `S`, `T` may be any ordinal type, `step` may only
   ## be positive. **Note**: This fails to count to ``high(int)`` if T = int for
   ## efficiency reasons.