summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-07-08 11:07:35 +0200
committerAraq <rumpf_a@web.de>2015-07-08 11:49:33 +0200
commit83842ff4ed7dc5ebe31b6fbdc6a3ffdbb9eee900 (patch)
treec2399f84d61d74045f721d11cde7924a135cd2e3
parent9e5722c9e7d6f9157a1432c9638943fdd11fd72d (diff)
downloadNim-83842ff4ed7dc5ebe31b6fbdc6a3ffdbb9eee900.tar.gz
Nimrod -> Nim rename
-rw-r--r--lib/core/macros.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim
index 20984bd00..7d1c15610 100644
--- a/lib/core/macros.nim
+++ b/lib/core/macros.nim
@@ -491,7 +491,7 @@ macro dumpTree*(s: stmt): stmt {.immediate.} = echo s.treeRepr
   ## Accepts a block of nim code and prints the parsed abstract syntax
   ## tree using the `toTree` function. Printing is done *at compile time*.
   ##
-  ## You can use this as a tool to explore the Nimrod's abstract syntax
+  ## You can use this as a tool to explore the Nim's abstract syntax
   ## tree and to discover what kind of nodes must be created to represent
   ## a certain expression/statement.