diff options
author | Araq <rumpf_a@web.de> | 2014-09-19 01:55:22 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-09-19 01:55:22 +0200 |
commit | 4800acf6ab92799316b270c991b6e8c01454608f (patch) | |
tree | d2681a702b53bc38eec7127a479487a933158ce3 /doc | |
parent | d615a2930924274187b4ab55e4b22be8489a788e (diff) | |
parent | 2fde559a5b1b49acb5d7c6bf1fe8e262a093e0d1 (diff) | |
download | Nim-4800acf6ab92799316b270c991b6e8c01454608f.tar.gz |
Merge branch 'devel' of https://github.com/Araq/Nimrod into bigbreak
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.txt | 2 |
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 |