diff options
author | Araq <rumpf_a@web.de> | 2012-09-11 08:09:34 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-09-11 08:09:34 +0200 |
commit | 64c638a9dcdc12b1ccf83543bd2aa3aa15ce26f1 (patch) | |
tree | 5db73f3010fc215f37291fd26019b247f66168e2 /doc | |
parent | 1bb1db79b24ffa359e3c4524e7e65c6daa8b2613 (diff) | |
download | Nim-64c638a9dcdc12b1ccf83543bd2aa3aa15ce26f1.tar.gz |
first steps for overloading support of passing blocks; bugfix: test results of 'compile' are not overwritten
Diffstat (limited to 'doc')
-rw-r--r-- | doc/trmacros.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/trmacros.txt b/doc/trmacros.txt index bb6591827..e138625f0 100644 --- a/doc/trmacros.txt +++ b/doc/trmacros.txt @@ -17,7 +17,7 @@ pipeline with user defined optimizations: The compiler now rewrites ``x * 2`` as ``x + x``. The code inside the curlies is the pattern to match against. The operators ``*``, ``**``, - ``|``, ``~`` have a special meaning in patterns if they are written in infix +``|``, ``~`` have a special meaning in patterns if they are written in infix notation, so to match verbatim against ``*`` the ordinary function call syntax needs to be used. |