diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-05-25 10:57:00 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-05-25 10:57:00 +0100 |
commit | 71561bef5846fbbfea1f77ecba1f9d6d7426ca43 (patch) | |
tree | 86307810079a1db79e3776c092c9dea5f218b912 /lib/system.nim | |
parent | 4702b5f5c3f0ac4d02ee531ac3cc264f3ca33d1a (diff) | |
parent | 513423a08dcc6f2011f9af394c2a66c54445d5eb (diff) | |
download | Nim-71561bef5846fbbfea1f77ecba1f9d6d7426ca43.tar.gz |
Merge pull request #2792 from apense/patch-1
Corrected various links within documentation
Diffstat (limited to 'lib/system.nim')
-rw-r--r-- | lib/system.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim index c02ae4bb3..a4b053ca7 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -2248,14 +2248,14 @@ proc echo*(x: varargs[expr, `$`]) {.magic: "Echo", tags: [WriteIOEffect], ## Unlike other IO operations this is guaranteed to be thread-safe as ## ``echo`` is very often used for debugging convenience. If you want to use ## ``echo`` inside a `proc without side effects - ## <manual.html#nosideeffect-pragma>`_ you can use `debugEcho <#debugEcho>`_ + ## <manual.html#pragmas-nosideeffect-pragma>`_ you can use `debugEcho <#debugEcho>`_ ## instead. proc debugEcho*(x: varargs[expr, `$`]) {.magic: "Echo", noSideEffect, tags: [], raises: [].} ## Same as `echo <#echo>`_, but as a special semantic rule, ``debugEcho`` ## pretends to be free of side effects, so that it can be used for debugging - ## routines marked as `noSideEffect <manual.html#nosideeffect-pragma>`_. + ## routines marked as `noSideEffect <manual.html#pragmas-nosideeffect-pragma>`_. template newException*(exceptn: typedesc, message: string): expr = ## creates an exception object of type ``exceptn`` and sets its ``msg`` field |