diff options
author | Araq <rumpf_a@web.de> | 2011-09-26 00:24:06 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-09-26 00:24:06 +0200 |
commit | 14968fba46a0c1128f38859b339c7384f9f96cd4 (patch) | |
tree | 5fcd6a68f54c4df629ae0545f34e974b2a8f5907 /doc/manual.txt | |
parent | 0f37d0e1f2aeee466b3c6179886963354eaa6222 (diff) | |
download | Nim-14968fba46a0c1128f38859b339c7384f9f96cd4.tar.gz |
bugfix: internal error in evalFieldAccess; parseutils.interpolatedFragments optimized; tstringinterp.nim now works
Diffstat (limited to 'doc/manual.txt')
-rwxr-xr-x | doc/manual.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index 03e763190..c088e7d83 100755 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -3405,9 +3405,9 @@ exception in one thread terminates the whole *process*! Taint mode ========== -The Nimrod compiler and standard library support a `taint mode`:idx:. -Input strings are declared with the `TaintedString`:idx: string type declared -in the ``system`` module. +The Nimrod compiler and most parts of the standard library support +a `taint mode`:idx:. Input strings are declared with the `TaintedString`:idx: +string type declared in the ``system`` module. If the taint mode is turned on (via the ``--taintMode:on`` command line option) it is a distinct string type which helps to detect input @@ -3423,4 +3423,3 @@ validation errors: If the taint mode is turned off, ``TaintedString`` is simply an alias for ``string``. - |