diff options
author | n5m <72841454+n5m@users.noreply.github.com> | 2021-01-06 02:23:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-06 03:23:59 +0100 |
commit | d721f5cecad90a0aa7e2ea144607ffafdf647e31 (patch) | |
tree | 79f88f2a5c80d21fb315a660ee8d93805da8bf1c | |
parent | 2c2baa9fad1d144c42baf30ed004decdf8bb0483 (diff) | |
download | Nim-d721f5cecad90a0aa7e2ea144607ffafdf647e31.tar.gz |
fix syntax in macros documentation (#16604)
-rw-r--r-- | doc/astspec.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/astspec.txt b/doc/astspec.txt index 019b735f5..e7bbcecc2 100644 --- a/doc/astspec.txt +++ b/doc/astspec.txt @@ -1033,7 +1033,7 @@ AST: nnkEmpty(), # no pragmas here nnkOfInherit( nnkIdent("RootObj") # inherits from RootObj - ) + ), nnkEmpty() ) ) |