aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/collection/set/ordered.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/data/collection/set/ordered.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/data/collection/set/ordered.lux b/stdlib/source/lux/data/collection/set/ordered.lux
index a3aef2c24..32702ed7f 100644
--- a/stdlib/source/lux/data/collection/set/ordered.lux
+++ b/stdlib/source/lux/data/collection/set/ordered.lux
@@ -5,7 +5,7 @@
[order (#+ Order)]]
[data
[collection
- ["." list ("#/." fold)]
+ ["." list ("#;." fold)]
[dictionary
["/" ordered]]]]
[type
@@ -56,11 +56,11 @@
(def: #export (from-list Order<a> list)
(All [a] (-> (Order a) (List a) (Set a)))
- (list/fold add (new Order<a>) list))
+ (list;fold add (new Order<a>) list))
(def: #export (union left right)
(All [a] (-> (Set a) (Set a) (Set a)))
- (list/fold ..add right (..to-list left)))
+ (list;fold ..add right (..to-list left)))
(def: #export (intersection left right)
(All [a] (-> (Set a) (Set a) (Set a)))