diff options
author | Araq <rumpf_a@web.de> | 2014-08-29 09:12:12 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-29 09:12:12 +0200 |
commit | c6034277fcb597da03d064b773ad4f6823823fa0 (patch) | |
tree | bcd12c6af99162c2bc5f03cd374d7b54c07420f3 /tests/template | |
parent | cd2c6128d1df471830ea7f842b57aa32aee5deab (diff) | |
download | Nim-c6034277fcb597da03d064b773ad4f6823823fa0.tar.gz |
further adaptations
Diffstat (limited to 'tests/template')
-rw-r--r-- | tests/template/t_otemplates.nim | 6 |
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 |