diff options
Diffstat (limited to 'stdlib/source/lux/macro/syntax/common/reader.lux')
-rw-r--r-- | stdlib/source/lux/macro/syntax/common/reader.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/macro/syntax/common/reader.lux b/stdlib/source/lux/macro/syntax/common/reader.lux index af3b584b8..bbbe3f6d7 100644 --- a/stdlib/source/lux/macro/syntax/common/reader.lux +++ b/stdlib/source/lux/macro/syntax/common/reader.lux @@ -29,7 +29,7 @@ (p.either (p.and s.local-identifier (parser/wrap (list))) (s.form (p.and s.local-identifier - (p.many s.local-identifier))))) + (p.some s.local-identifier))))) ## Annotations (def: #export annotations |