aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/meta/type/dynamic.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/meta/type/dynamic.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/meta/type/dynamic.lux b/stdlib/source/library/lux/meta/type/dynamic.lux
index a10d24530..6c69e7417 100644
--- a/stdlib/source/library/lux/meta/type/dynamic.lux
+++ b/stdlib/source/library/lux/meta/type/dynamic.lux
@@ -4,7 +4,7 @@
["[0]" debug]
[control
["[0]" try (.only Try)]
- ["[0]" exception (.only exception)]]
+ ["[0]" exception (.only Exception)]]
[data
[text
["%" \\format]]]
@@ -16,8 +16,8 @@
["[0]" // (.only)
["[0]" primitive (.only primitive)]])
-(exception .public (wrong_type [expected Type
- actual Type])
+(exception.def .public (wrong_type [expected actual])
+ (Exception [Type Type])
(exception.report
(list ["Expected" (%.type expected)]
["Actual" (%.type actual)])))