summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@googlemail.com>2014-09-18 18:13:16 +0100
committerDominik Picheta <dominikpicheta@googlemail.com>2014-09-18 18:13:16 +0100
commita179dde3ed2f4a06487bcbbd777e55ebb894d594 (patch)
treebcd406026a8076a85ce88fe9e414d43b4ccda627
parent63548f04b2d1793099813cf5ab888c580f8074a0 (diff)
parent67525d7c1bd8c0e198f541fe9fc402843ca76df4 (diff)
downloadNim-a179dde3ed2f4a06487bcbbd777e55ebb894d594.tar.gz
Merge pull request #1532 from PavelVozenilek/devel
more precise word
-rw-r--r--doc/manual.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.txt b/doc/manual.txt
index 89a417fb2..7b713bf93 100644
--- a/doc/manual.txt
+++ b/doc/manual.txt
@@ -1421,7 +1421,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:: nimrod