diff options
Diffstat (limited to 'stdlib/source/test/lux/debug.lux')
-rw-r--r-- | stdlib/source/test/lux/debug.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/test/lux/debug.lux b/stdlib/source/test/lux/debug.lux index 638afd90f..a7741082a 100644 --- a/stdlib/source/test/lux/debug.lux +++ b/stdlib/source/test/lux/debug.lux @@ -210,13 +210,13 @@ (: (List Any)) (list\map /.inspection) (text.join_with " ") - (text.enclose ["[" "]"])) + (text.enclosed ["[" "]"])) (/.inspection [sample_bit sample_int sample_frac sample_text])) ))))) (syntax: (macro_error macro) (function (_ compiler) - (case ((macro.expand macro) compiler) + (case ((macro.expansion macro) compiler) (#try.Failure error) (#try.Success [compiler (list (code.text error))]) |