diff options
author | Eduardo Julian | 2018-05-01 21:51:02 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-05-01 21:51:02 -0400 |
commit | 00c5bad77dda7e204642976e67da536f82f0cbcf (patch) | |
tree | c8f5c39e161c32a9abc57e3552daf288852a89fb /stdlib/source/lux/lang | |
parent | 677ae72669dabcad59262287aa4d84c5631bbddd (diff) |
- Re-organized dict modules.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/lang/syntax.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/lang/syntax.lux b/stdlib/source/lux/lang/syntax.lux index 88a784980..1a9b5e84c 100644 --- a/stdlib/source/lux/lang/syntax.lux +++ b/stdlib/source/lux/lang/syntax.lux @@ -1,4 +1,4 @@ -## This is the LuxC's parser. +## This is LuxC's parser. ## It takes the source code of a Lux file in raw text form and ## extracts the syntactic structure of the code from it. ## It only produces Lux Code nodes, and thus removes any white-space @@ -38,7 +38,7 @@ (text ["l" lexer] format) (coll [sequence #+ Sequence] - [dict #+ Dict])))) + (dict ["dict" unordered #+ Dict]))))) (type: #export Aliases (Dict Text Text)) |