aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/collection/set/ordered.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/data/collection/set/ordered.lux')
-rw-r--r--stdlib/source/library/lux/data/collection/set/ordered.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/data/collection/set/ordered.lux b/stdlib/source/library/lux/data/collection/set/ordered.lux
index 8f2992ebc..e69dba5fe 100644
--- a/stdlib/source/library/lux/data/collection/set/ordered.lux
+++ b/stdlib/source/library/lux/data/collection/set/ordered.lux
@@ -13,7 +13,7 @@
abstract]]])
(abstract: .public (Set a)
- {#.doc (doc "A set with ordered entries.")}
+ {#.doc (example "A set with ordered entries.")}
(/.Dictionary a a)
@@ -77,13 +77,13 @@
)
(def: .public (sub? super sub)
- {#.doc (doc "Is 'sub' a sub-set of 'super'?")}
+ {#.doc (example "Is 'sub' a sub-set of 'super'?")}
(All [a] (-> (Set a) (Set a) Bit))
(|> sub
..list
(list.every? (..member? super))))
(def: .public (super? sub super)
- {#.doc (doc "Is 'super' a super-set of 'sub'?")}
+ {#.doc (example "Is 'super' a super-set of 'sub'?")}
(All [a] (-> (Set a) (Set a) Bit))
(sub? super sub))