From 83842ff4ed7dc5ebe31b6fbdc6a3ffdbb9eee900 Mon Sep 17 00:00:00 2001 From: Araq Date: Wed, 8 Jul 2015 11:07:35 +0200 Subject: [PATCH] Nimrod -> Nim rename --- lib/core/macros.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/macros.nim b/lib/core/macros.nim index 20984bd00f..7d1c15610a 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.