diff options
author | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2014-07-19 13:41:39 +0200 |
---|---|---|
committer | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2014-07-19 13:41:39 +0200 |
commit | eafb79b721a0eb461a3097f5a511c1f73994f995 (patch) | |
tree | c63ade4a6a966c5061e16a220bc456b20578dea8 /doc/manual.txt | |
parent | 81d287f75812feb6eb055aa53494e0342a148563 (diff) | |
download | Nim-eafb79b721a0eb461a3097f5a511c1f73994f995.tar.gz |
Hyperlinks echo variants with noSideEffect pragma. Refs #1379.
Diffstat (limited to 'doc/manual.txt')
-rw-r--r-- | doc/manual.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index 32b0541e9..54c1477e8 100644 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -4970,9 +4970,9 @@ 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 ``debugEcho`` pretends to be free of -side effects, so that it can be used for debugging routines marked as -``noSideEffect``. +As a special semantic rule, the built-in `debugEcho <system.html#debugEcho>`_ +pretends to be free of side effects, so that it can be used for debugging +routines marked as ``noSideEffect``. **Future directions**: ``func`` may become a keyword and syntactic sugar for a proc with no side effects: |