diff options
author | PavelVozenilek <pavel_vozenilek@hotmail.com> | 2014-09-18 17:07:52 +0200 |
---|---|---|
committer | PavelVozenilek <pavel_vozenilek@hotmail.com> | 2014-09-18 17:07:52 +0200 |
commit | 67525d7c1bd8c0e198f541fe9fc402843ca76df4 (patch) | |
tree | 59e168d88b9fed355b1908ef59734b7166a840de | |
parent | 79b08488f725db10c29afe52250897fc830496e3 (diff) | |
download | Nim-67525d7c1bd8c0e198f541fe9fc402843ca76df4.tar.gz |
more precise word
-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 3af41faec..ddc8c8d93 100644 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -1449,7 +1449,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 |