diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-03-27 02:28:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-27 10:28:11 +0100 |
commit | a65189a739c59fcc0d7b3f8fdcb2cf8bed432f68 (patch) | |
tree | 079934acdaad7f51edd35b54e2390c3c2f08daed /lib/core | |
parent | 8ed6de4fe6517dc4db38ab5dea898c0016d1c08a (diff) | |
download | Nim-a65189a739c59fcc0d7b3f8fdcb2cf8bed432f68.tar.gz |
nnkArglist => nnkArgList + special case stylecheck:error (#17529)
* nnkArglist => nnkArgList * special case stylecheck:error
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 5a556fc8d..8d6258e80 100644 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -78,7 +78,7 @@ type nnkSharedTy, # 'shared T' nnkEnumTy, nnkEnumFieldDef, - nnkArglist, nnkPattern + nnkArgList, nnkPattern nnkHiddenTryStmt, nnkClosure, nnkGotoState, |