aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/debug.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/debug.lux')
-rw-r--r--stdlib/source/lux/debug.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/debug.lux b/stdlib/source/lux/debug.lux
index d4f12e9fe..47e104842 100644
--- a/stdlib/source/lux/debug.lux
+++ b/stdlib/source/lux/debug.lux
@@ -278,9 +278,9 @@
(def: #export (represent type value)
(-> Type Any (Try Text))
- (case (<type>.run type ..representation)
+ (case (<type>.run ..representation type)
(#try.Success representation)
(#try.Success (representation value))
(#try.Failure _)
- (exception.throw cannot-represent-value type)))
+ (exception.throw ..cannot-represent-value type)))