aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/ffi.lua.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/ffi.lua.lux')
-rw-r--r--stdlib/source/library/lux/ffi.lua.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/library/lux/ffi.lua.lux b/stdlib/source/library/lux/ffi.lua.lux
index ddfeede9d..4d3f5aa26 100644
--- a/stdlib/source/library/lux/ffi.lua.lux
+++ b/stdlib/source/library/lux/ffi.lua.lux
@@ -15,7 +15,7 @@
["." text
["%" format]]
[collection
- ["." list ("#\." functor fold)]]]
+ ["." list ("#\." functor mix)]]]
[type
abstract]
[macro (#+ with_identifiers)
@@ -231,11 +231,11 @@
real_class (text.replaced "/" "." class)
imported (case (text.all_split_by "/" class)
(#.Item head tail)
- (list\fold (function (_ sub super)
- (` ("lua object get" (~ (code.text sub))
- (:as (..Object .Any) (~ super)))))
- (` ("lua import" (~ (code.text head))))
- tail)
+ (list\mix (function (_ sub super)
+ (` ("lua object get" (~ (code.text sub))
+ (:as (..Object .Any) (~ super)))))
+ (` ("lua import" (~ (code.text head))))
+ tail)
#.End
(` ("lua import" (~ (code.text class)))))]