summary refs log tree commit diff stats
path: root/doc/tut1.rst
diff options
context:
space:
mode:
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: