diff options
Diffstat (limited to 'compiler/astalgo.nim')
-rw-r--r-- | compiler/astalgo.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/astalgo.nim b/compiler/astalgo.nim index f228de1ca..fd95b3780 100644 --- a/compiler/astalgo.nim +++ b/compiler/astalgo.nim @@ -218,12 +218,12 @@ proc sameIgnoreBacktickGensymInfo(a, b: string): bool = proc getNamedParamFromList*(list: PNode, ident: PIdent): PSym = ## Named parameters are special because a named parameter can be - ## gensym'ed and then they have '`<number>' suffix that we need to + ## gensym'ed and then they have '\`<number>' suffix that we need to ## ignore, see compiler / evaltempl.nim, snippet: ## ##..code-block:: nim ## - ## result.add newIdentNode(getIdent(c.ic, x.name.s & "`gensym" & $x.id), + ## result.add newIdentNode(getIdent(c.ic, x.name.s & "\`gensym" & $x.id), ## if c.instLines: actual.info else: templ.info) for i in 1..<list.len: let it = list[i].sym |