summary refs log tree commit diff stats
path: root/doc/tut1.rst
diff options
context:
space:
mode:
authormark-summerfield <mark@qtrac.eu>2017-03-12 19:01:01 +0000
committerAndreas Rumpf <rumpf_a@web.de>2017-03-12 20:01:01 +0100
commit9fda97b05840a373f1e49417e7f50fa1328d7b06 (patch)
tree53866631ac69ca79cfbb583cc6e87d847c4e11aa /doc/tut1.rst
parentef59b1a8eb1e6f68febedf8c9d40379294598692 (diff)
downloadNim-9fda97b05840a373f1e49417e7f50fa1328d7b06.tar.gz
Fixed typo (#5508)
Diffstat (limited to 'doc/tut1.rst')
-rw-r--r--doc/tut1.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut1.rst b/doc/tut1.rst
index fb1ccc055..65906376e 100644
--- a/doc/tut1.rst
+++ b/doc/tut1.rst
@@ -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: