summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorSergey Avseyev <sergey.avseyev@gmail.com>2015-05-23 19:32:47 +0300
committerSergey Avseyev <sergey.avseyev@gmail.com>2015-05-23 19:32:47 +0300
commiteb6f26dd6a103e5c0eaf7c21c3c66881e8e24700 (patch)
treeade61f9a42e351da75d9d0f9aab9c1348e3d57e4 /doc
parent5ad9d874c32a72ab473d3455b5d72f915729d195 (diff)
downloadNim-eb6f26dd6a103e5c0eaf7c21c3c66881e8e24700.tar.gz
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
5'>135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220