summary refs log tree commit diff stats
path: root/doc/astspec.txt
diff options
context:
space:
mode:
authorpatrick dw <algorithicimperative@gmail.com>2015-06-19 01:08:41 -0500
committerpatrick dw <algorithicimperative@gmail.com>2015-06-19 01:08:41 -0500
commitb6252af5c6ce99c6eaec91fb5570143151660b74 (patch)
treebc64997b315593679d1303a99d9ae632d7dce546 /doc/astspec.txt
parent15e7fe787a2bf89b82aeba965ed4fd8b200dca1a (diff)
downloadNim-b6252af5c6ce99c6eaec91fb5570143151660b74.tar.gz
rename writeln to writeLine in doc
Diffstat (limited to 'doc/astspec.txt')
-rw-r--r--doc/astspec.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/astspec.txt b/doc/astspec.txt
index d3ca7755e..9bedb00fc 100644
--- a/doc/astspec.txt
+++ b/doc/astspec.txt
@@ -222,13 +222,13 @@ Call with named arguments
 Concrete syntax:
 
 .. code-block:: nim
-  writeln(file=stdout, "hallo")
+  writeLine(file=stdout, "hallo")
 
 AST:
 
 .. code-block:: nim
   nnkCall(
-    nnkIdent(!"writeln"),
+    nnkIdent(!"writeLine"),
     nnkExprEqExpr(
       nnkIdent(!"file"),
       nnkIdent(!"stdout")