summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAlexander <achasch@gmail.com>2015-06-16 16:00:33 +0300
committerAlexander <achasch@gmail.com>2015-06-16 16:00:33 +0300
commit5e2d7e81a23750661dca883adaa97745234879c4 (patch)
tree744579e324cde27170422ba7ce38de08f581ef60 /doc
parentabe1051374c2213ab28a8e7814ef3cc11d044e77 (diff)
downloadNim-5e2d7e81a23750661dca883adaa97745234879c4.tar.gz
Update tut1.txt
Diffstat (limited to 'doc')
-rw-r--r--doc/tut1.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut1.txt b/doc/tut1.txt
index 6f10e7cbb..084de453a 100644
--- a/doc/tut1.txt
+++ b/doc/tut1.txt
@@ -764,7 +764,7 @@ However, this cannot be done for mutually recursive procedures:
 
   proc even(n: int): bool =
     if n == 1: 
-      true
+      false
     n == 0 or odd(n-1)
 
 Here ``odd`` depends on ``even`` and vice versa. Thus ``even`` needs to be