summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-09-11 08:09:34 +0200
committerAraq <rumpf_a@web.de>2012-09-11 08:09:34 +0200
commit64c638a9dcdc12b1ccf83543bd2aa3aa15ce26f1 (patch)
tree5db73f3010fc215f37291fd26019b247f66168e2 /doc
parent1bb1db79b24ffa359e3c4524e7e65c6daa8b2613 (diff)
downloadNim-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.txt2
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.