aboutsummaryrefslogtreecommitdiff
path: root/lux-lua/source/program.lux
diff options
context:
space:
mode:
Diffstat (limited to 'lux-lua/source/program.lux')
-rw-r--r--lux-lua/source/program.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/lux-lua/source/program.lux b/lux-lua/source/program.lux
index ac9e9d310..74def59a7 100644
--- a/lux-lua/source/program.lux
+++ b/lux-lua/source/program.lux
@@ -169,8 +169,8 @@
(exception: (unknown_kind_of_object [object java/lang/Object])
(exception.report
- ["Class" (ffi.of_string (java/lang/Object::toString (java/lang/Object::getClass object)))]
- ["Object" (ffi.of_string (java/lang/Object::toString object))]))
+ "Class" (ffi.of_string (java/lang/Object::toString (java/lang/Object::getClass object)))
+ "Object" (ffi.of_string (java/lang/Object::toString object))))
(ffi.interface: LuxValue
(getValue [] java/lang/Object))
@@ -447,7 +447,7 @@
(exception: (cannot_apply_a_non_function [object java/lang/Object])
(exception.report
- ["Non-function" (ffi.of_string (java/lang/Object::toString object))]))
+ "Non-function" (ffi.of_string (java/lang/Object::toString object))))
(def: ensure_function
(-> Macro (Maybe net/sandius/rembulan/runtime/LuaFunction))