aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/data/collection/dictionary/ordered.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/data/collection/dictionary/ordered.lux20
1 files changed, 10 insertions, 10 deletions
diff --git a/stdlib/source/documentation/lux/data/collection/dictionary/ordered.lux b/stdlib/source/documentation/lux/data/collection/dictionary/ordered.lux
index 64f18f260..232e3bcdf 100644
--- a/stdlib/source/documentation/lux/data/collection/dictionary/ordered.lux
+++ b/stdlib/source/documentation/lux/data/collection/dictionary/ordered.lux
@@ -21,46 +21,46 @@
($.default /.values)
($.default /.equivalence)
- ($.documentation (/.Dictionary key value)
+ ($.definition (/.Dictionary key value)
"A dictionary data-structure with ordered entries.")
- ($.documentation /.empty
+ ($.definition /.empty
"An empty dictionary, employing the given order."
[(empty order)])
- ($.documentation /.value
+ ($.definition /.value
""
[(value key dict)])
- ($.documentation /.key?
+ ($.definition /.key?
""
[(key? dict key)])
(,, (with_template [<name>]
- [(`` ($.documentation <name>
+ [(`` ($.definition <name>
(format "Yields value under the " (,, (template.text [<name>])) "imum key.")))]
[/.min]
[/.max]
))
- ($.documentation /.size
+ ($.definition /.size
""
[(size dict)])
- ($.documentation /.has
+ ($.definition /.has
""
[(has key value dict)])
- ($.documentation /.lacks
+ ($.definition /.lacks
""
[(lacks key dict)])
- ($.documentation /.revised
+ ($.definition /.revised
""
[(revised key transform dict)])
- ($.documentation /.of_list
+ ($.definition /.of_list
""
[(of_list order list)])]
[])))