summary refs log tree commit diff stats
path: root/doc/tut2.txt
diff options
context:
space:
mode:
authorGrzegorz Adam Hankiewicz <gradha@imap.cc>2013-12-08 18:33:19 +0100
committerGrzegorz Adam Hankiewicz <gradha@imap.cc>2013-12-08 18:33:19 +0100
commit410fcf7f52ec34f8ebe18c089f52a1024924c8ce (patch)
tree94583d8758000979e02a85e29bd89176e74d8d9a /doc/tut2.txt
parent2c315690f22e95a5af801535d1bc77cdb9b77343 (diff)
downloadNim-410fcf7f52ec34f8ebe18c089f52a1024924c8ce.tar.gz
Fixes strutils reference in macro tutorial.
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 82be57000..b35f71527 100644
--- a/doc/tut2.txt
+++ b/doc/tut2.txt
@@ -852,7 +852,7 @@ to be included along the program containing the license information::
 The ``readCfgAtRuntime`` proc will open the given filename and return a
 ``TTable`` from the `tables module <tables.html>`_. The parsing of the file is
 done (without much care for handling invalid data or corner cases) using the
-``split`` proc from the `strutils module <strutils.html>`_. There are many
+``splitLines`` proc from the `strutils module <strutils.html>`_. There are many
 things which can fail; mind the purpose is explaining how to make this run at
 compile time, not how to properly implement a DRM scheme.