diff options
author | Araq <rumpf_a@web.de> | 2013-05-21 22:36:46 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-05-21 22:36:46 +0200 |
commit | 9fd21ba2db34a2e1c3a7bee9a6c07791608c8dce (patch) | |
tree | f9d72453e90762e620e339b2dcc68fdd32cdcd9b /doc | |
parent | 51c6356ea7e3e8c560b11d028dfc3a21c3c45c97 (diff) | |
download | Nim-9fd21ba2db34a2e1c3a7bee9a6c07791608c8dce.tar.gz |
fixed typos in the manual; kept trimcc tool up to date
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index 31bd7134d..08e5f723b 100644 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -4670,7 +4670,7 @@ Example: NoForward pragma ---------------- -The `noforward`:idx pragma can be used to turn on and off a special compilation +The `noforward`:idx: pragma can be used to turn on and off a special compilation mode that to large extent eliminates the need for forward declarations. In this mode, the proc definitions may appear out of order and the compiler will postpone their semantic analysis and compilation until it actually needs to generate code @@ -4702,9 +4702,9 @@ times, but if exhaustive compilation of all definitions is required, using Example: -.. code-block: nimrod - - {. noforward: on .} +.. code-block:: nimrod + + {.noforward: on.} proc foo(x: int) = bar x |