summary refs log tree commit diff stats
path: root/tests/template
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-08-29 09:12:12 +0200
committerAraq <rumpf_a@web.de>2014-08-29 09:12:12 +0200
commitc6034277fcb597da03d064b773ad4f6823823fa0 (patch)
treebcd12c6af99162c2bc5f03cd374d7b54c07420f3 /tests/template
parentcd2c6128d1df471830ea7f842b57aa32aee5deab (diff)
downloadNim-c6034277fcb597da03d064b773ad4f6823823fa0.tar.gz
further adaptations
Diffstat (limited to 'tests/template')
-rw-r--r--tests/template/t_otemplates.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/template/t_otemplates.nim b/tests/template/t_otemplates.nim
index 7de728ab2..1a9075d20 100644
--- a/tests/template/t_otemplates.nim
+++ b/tests/template/t_otemplates.nim
@@ -3,8 +3,8 @@ discard """
 """
 
 # Ref:

-# http://nimrod-lang.org/macros.html

-# http://nimrod-lang.org/parseutils.html

+# http://nim-lang.org/macros.html

+# http://nim-lang.org/parseutils.html

 

 

 # Imports

@@ -313,7 +313,7 @@ proc parse_until_symbol(node: PNimrodNode, value: string, index: var int): bool
 

 proc parse_template(node: PNimrodNode, value: string) =

     ## Parses through entire template, outputing valid

-    ## Nimrod code into the input `node` AST.

+    ## Nim code into the input `node` AST.

     var index = 0

     while index < value.len and

           parse_until_symbol(node, value, index): nil