aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/macro/local.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/macro/local.lux')
-rw-r--r--stdlib/source/library/lux/macro/local.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/macro/local.lux b/stdlib/source/library/lux/macro/local.lux
index 234820376..4e762b81d 100644
--- a/stdlib/source/library/lux/macro/local.lux
+++ b/stdlib/source/library/lux/macro/local.lux
@@ -6,7 +6,7 @@
["[0]" monad (.only do)]]
[control
["[0]" try (.only Try)]
- ["[0]" exception (.only exception:)]
+ ["[0]" exception (.only exception)]
["<>" parser (.only)
["<[0]>" code]]]
[data
@@ -20,13 +20,13 @@
[syntax (.only syntax)]
["[1][0]" code]])
-(exception: .public (unknown_module [module Text])
+(exception .public (unknown_module [module Text])
(exception.report
"Module" (text.format module)))
(with_template [<name>]
- [(exception: .public (<name> [module Text
- definition Text])
+ [(exception .public (<name> [module Text
+ definition Text])
(exception.report
"Module" (text.format module)
"Definition" (text.format definition)))]