diff options
author | cooldome <cdome@bk.ru> | 2020-04-28 18:56:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 19:56:50 +0200 |
commit | 3b5a504692495324afdb7c20159122e66100f767 (patch) | |
tree | f7084d4efb5eacfdb84e980a90ee9505eb17f500 /lib/core | |
parent | 7d6cbf290a5e0cbce14b9926f57221a017f20a4a (diff) | |
download | Nim-3b5a504692495324afdb7c20159122e66100f767.tar.gz |
parseEnum_regression (#14150)
Co-authored-by: cooldome <ariabushenko@bk.ru>
Diffstat (limited to 'lib/core')
-rw-r--r-- | lib/core/macros.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim index d94371d21..6e02ae42c 100644 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -478,7 +478,7 @@ type proc bindSym*(ident: string | NimNode, rule: BindSymRule = brClosed): NimNode {. magic: "NBindSym", noSideEffect.} - ## Ceates a node that binds `ident` to a symbol node. The bound symbol + ## Creates a node that binds `ident` to a symbol node. The bound symbol ## may be an overloaded symbol. ## if `ident` is a NimNode, it must have ``nnkIdent`` kind. ## If ``rule == brClosed`` either an ``nnkClosedSymChoice`` tree is |