summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorreactormonk <hafnersimon@gmail.com>2015-01-03 04:33:43 +0500
committerreactormonk <hafnersimon@gmail.com>2015-01-03 04:33:43 +0500
commit606688e059a5c6a5468890199d451fc8aabc70c8 (patch)
treea5198216566b44a94c627b4efa9a59b95a05dba4
parent05cbbac4e56b07b902b21f1e9a3f270f450b5d04 (diff)
parentc9fc300f2df14d2db236689176d11d66b4368242 (diff)
downloadNim-606688e059a5c6a5468890199d451fc8aabc70c8.tar.gz
Merge pull request #1830 from arthurtw/devel
Fix typo
-rw-r--r--doc/tut1.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut1.txt b/doc/tut1.txt
index 4c32fa0ae..324a38b0a 100644
--- a/doc/tut1.txt
+++ b/doc/tut1.txt
@@ -1070,7 +1070,7 @@ Operation             Comment
 ``dec(x, n)``         decrements `x` by `n`; `n` is an integer
 ``succ(x)``           returns the successor of `x`
 ``succ(x, n)``        returns the `n`'th successor of `x`
-``prec(x)``           returns the predecessor of `x`
+``pred(x)``           returns the predecessor of `x`
 ``pred(x, n)``        returns the `n`'th predecessor of `x`
 -----------------     --------------------------------------------------------