diff options
author | Oscar Campbell <oscar@campbell.nu> | 2015-05-25 19:51:58 +0200 |
---|---|---|
committer | Oscar Campbell <oscar@campbell.nu> | 2015-05-25 19:51:58 +0200 |
commit | f6c12853ea996ef6307d0e5fd6738d0aaa2bd1e7 (patch) | |
tree | 1d9e468089a169fc9fd44678c19194eaa2c8a3c8 /doc/manual/stmts.txt | |
parent | 625299e861173266d0393ffdd76e66be9cb0c34d (diff) | |
parent | 71561bef5846fbbfea1f77ecba1f9d6d7426ca43 (diff) | |
download | Nim-f6c12853ea996ef6307d0e5fd6738d0aaa2bd1e7.tar.gz |
Merge remote-tracking branch 'upstream/devel' into devel
Diffstat (limited to 'doc/manual/stmts.txt')
-rw-r--r-- | doc/manual/stmts.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual/stmts.txt b/doc/manual/stmts.txt index 7b4ea9e6d..32c01dccb 100644 --- a/doc/manual/stmts.txt +++ b/doc/manual/stmts.txt @@ -176,9 +176,9 @@ The rules for compile-time computability are: 1. Literals are compile-time computable. 2. Type conversions are compile-time computable. 3. Procedure calls of the form ``p(X)`` are compile-time computable if - ``p`` is a proc without side-effects (see the `noSideEffect pragma`_ - for details) and if ``X`` is a (possibly empty) list of compile-time - computable arguments. + ``p`` is a proc without side-effects (see the `noSideEffect pragma + <#pragmas-nosideeffect-pragma>`_ for details) and if ``X`` is a + (possibly empty) list of compile-time computable arguments. Constants cannot be of type ``ptr``, ``ref``, ``var`` or ``object``, nor can |