aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/data
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/documentation/lux/data')
-rw-r--r--stdlib/source/documentation/lux/data/collection/dictionary.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/documentation/lux/data/collection/dictionary.lux b/stdlib/source/documentation/lux/data/collection/dictionary.lux
index 72bbc43a8..80e23fc70 100644
--- a/stdlib/source/documentation/lux/data/collection/dictionary.lux
+++ b/stdlib/source/documentation/lux/data/collection/dictionary.lux
@@ -58,15 +58,15 @@
""
[(of_list key_hash kvs)])
-(documentation: /.merged
+(documentation: /.composite
(format "Merges 2 dictionaries."
\n "If any collisions with keys occur, the values of dict2 will overwrite those of dict1.")
- [(merged dict2 dict1)])
+ [(composite dict2 dict1)])
-(documentation: /.merged_with
+(documentation: /.composite_with
(format "Merges 2 dictionaries."
\n "If any collisions with keys occur, a new value will be computed by applying 'f' to the values of dict2 and dict1.")
- [(merged_with f dict2 dict1)])
+ [(composite_with f dict2 dict1)])
(documentation: /.re_bound
"If there is a value under 'from_key', remove 'from_key' and store the value under 'to_key'."
@@ -90,8 +90,8 @@
..revised
..revised'
..of_list
- ..merged
- ..merged_with
+ ..composite
+ ..composite_with
..re_bound
..sub
($.default /.key_hash)