diff options
-rw-r--r-- | doc/astspec.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/astspec.txt b/doc/astspec.txt index ab2fbcacc..c41aee96f 100644 --- a/doc/astspec.txt +++ b/doc/astspec.txt @@ -1255,7 +1255,9 @@ AST: nnkEmpty(), # patterns for term rewriting in templates and macros (not procs) nnkGenericParams( # generic type parameters, like with type declaration nnkIdentDefs( - nnkIdent("T"), nnkIdent("SomeInteger") + nnkIdent("T"), + nnkIdent("SomeInteger"), + nnkEmpty() ) ), nnkFormalParams( |