summary refs log tree commit diff stats
path: root/doc/tut2.txt
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-10-21 02:18:38 +0200
committerAraq <rumpf_a@web.de>2015-10-21 02:18:38 +0200
commit3d512a73e61b27fc5a6de24f281d7f42db784884 (patch)
tree8ab2610aa1f51f63c3feff249d91b7b0350cb4aa /doc/tut2.txt
parentd221241ac56bf14a38ac9587a6b88b9fae2585c3 (diff)
downloadNim-3d512a73e61b27fc5a6de24f281d7f42db784884.tar.gz
documentation improvements; system.nim docs adapted to unix's braindead idea of how software should be packaged which didn't work in 1970 and surprise doesn't work in 2015 either
Diffstat (limited to 'doc/tut2.txt')
-rw-r--r--doc/tut2.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut2.txt b/doc/tut2.txt
index 83ea9ad33..db9e4cd58 100644
--- a/doc/tut2.txt
+++ b/doc/tut2.txt
@@ -215,7 +215,7 @@ postfix notation.)
 So "pure object oriented" code is easy to write:
 
 .. code-block:: nim
-  import strutils
+  import strutils, sequtils
 
   stdout.writeLine("Give a list of numbers (separated by spaces): ")
   stdout.write(stdin.readLine.split.map(parseInt).max.`$`)