diff options
author | Araq <rumpf_a@web.de> | 2012-09-13 17:33:20 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-09-13 17:33:20 +0200 |
commit | d336cb4957c6b223ce7e8d717718217cb0665b56 (patch) | |
tree | be009376c85e0076de6926a80b6eadc6e36ab3fb /doc | |
parent | a783077cfde0f542c1cc155fde617b0ceb977b21 (diff) | |
download | Nim-d336cb4957c6b223ce7e8d717718217cb0665b56.tar.gz |
bugfix: echo vs debugEcho
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/manual.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index 042163de9..028ccb671 100755 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -3431,7 +3431,7 @@ or ``ref T`` or ``ptr T`` this means no locations are modified. It is a static error to mark a proc/iterator to have no side effect if the compiler cannot verify this. -As a special semantic rule, the built-in ``echo`` pretends to be free of +As a special semantic rule, the built-in ``debugEcho`` pretends to be free of side effects, so that it can be used for debugging routines marked as ``noSideEffect``. |