Browse Source

Merge topic 'update_foreach_range_doc'

7771657c Help: Better explain that foreach(RANGE ) is inclusive.

Acked-by: Kitware Robot <[email protected]>
Merge-request: !1716
Brad King 7 years ago
parent
commit
142938225e
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Help/command/foreach.rst

+ 4 - 4
Help/command/foreach.rst

@@ -26,14 +26,14 @@ list.
 Foreach can also iterate over a generated range of numbers.  There are
 three types of this iteration:
 
-* When specifying single number, the range will have elements 0 to
-  "total".
+* When specifying single number, the range will have elements [0, ... to
+  "total"] (inclusive).
 
 * When specifying two numbers, the range will have elements from the
-  first number to the second number.
+  first number to the second number (inclusive).
 
 * The third optional number is the increment used to iterate from the
-  first number to the second number.
+  first number to the second number (inclusive).
 
 ::