summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-09-19 01:55:22 +0200
committerAraq <rumpf_a@web.de>2014-09-19 01:55:22 +0200
commit4800acf6ab92799316b270c991b6e8c01454608f (patch)
treed2681a702b53bc38eec7127a479487a933158ce3 /doc
parentd615a2930924274187b4ab55e4b22be8489a788e (diff)
parent2fde559a5b1b49acb5d7c6bf1fe8e262a093e0d1 (diff)
downloadNim-4800acf6ab92799316b270c991b6e8c01454608f.tar.gz
Merge branch 'devel' of https://github.com/Araq/Nimrod into bigbreak
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.txt b/doc/manual.txt
index 3d14ef488..3d44110f5 100644
--- a/doc/manual.txt
+++ b/doc/manual.txt
@@ -1412,7 +1412,7 @@ Examples:
   proc forEach(c: proc (x: int) {.cdecl.}) =
     ...
 
-  forEach(printItem)  # this will NOT work because calling conventions differ
+  forEach(printItem)  # this will NOT compile because calling conventions differ
 
   
 .. code-block:: nim