summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorreactormonk <hafnersimon@gmail.com>2015-05-23 11:41:42 -0500
committerreactormonk <hafnersimon@gmail.com>2015-05-23 11:41:42 -0500
commit6c8f7cc481f508ac3873d5c5529e67d60c61b8ee (patch)
treeade61f9a42e351da75d9d0f9aab9c1348e3d57e4 /doc
parent5ad9d874c32a72ab473d3455b5d72f915729d195 (diff)
parenteb6f26dd6a103e5c0eaf7c21c3c66881e8e24700 (diff)
downloadNim-6c8f7cc481f508ac3873d5c5529e67d60c61b8ee.tar.gz
Merge pull request #2778 from avsej/patch-1
Fix typo in tutorial
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 cf27ac788..1fa495054 100644
--- a/doc/tut1.txt
+++ b/doc/tut1.txt
@@ -1303,7 +1303,7 @@ type conversions in this context:
 
   myWriteln(stdout, 123, "abc", 4.0)
   # is transformed by the compiler to:
-  myWriteln(stdout, [$123, $"def", $4.0])
+  myWriteln(stdout, [$123, $"abc", $4.0])
 
 In this example `$ <system.html#$>`_ is applied to any argument that is passed
 to the parameter ``a``. Note that `$ <system.html#$>`_ applied to strings is a