diff options
author | Eduardo Julian | 2018-05-06 00:46:09 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-05-06 00:46:09 -0400 |
commit | 3f5cb79407289996b107c65ccd14451e4fbd9679 (patch) | |
tree | 19bab301f8689b2e0db314f41f4e816ef4c63b63 /stdlib/source | |
parent | 8787650c4b1641832db9df2c35bc3046e886220e (diff) |
- Fixed error message for "lux/macro/syntax.syntax:".
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/macro/syntax.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/macro/syntax.lux b/stdlib/source/lux/macro/syntax.lux index 5c19d7560..807e3a2b7 100644 --- a/stdlib/source/lux/macro/syntax.lux +++ b/stdlib/source/lux/macro/syntax.lux @@ -246,7 +246,7 @@ (wrap [(code.symbol var-name) (` any)]) _ - (macro.fail "Syntax pattern expects tuples or symbols.")))) + (macro.fail "Syntax pattern expects records or symbols.")))) args) #let [g!state (code.symbol ["" "*compiler*"]) error-msg (code.text (text/compose "Wrong syntax for " name)) |