Fixed typo (#5508)

This commit is contained in:
mark-summerfield
2017-03-12 19:01:01 +00:00
committed by Andreas Rumpf
parent ef59b1a8eb
commit 9fda97b058

View File

@@ -393,7 +393,7 @@ Since counting up occurs so often in programs, Nim also has a `..
for i in 1..10:
...
Zero-indexed counting have two shortcuts ``..<`` and ``..^`` to simplify counting to one less then the higher index:
Zero-indexed counting have two shortcuts ``..<`` and ``..^`` to simplify counting to one less than the higher index:
.. code-block:: nim
for i in 0..<10: