summaryrefslogtreecommitdiff
path: root/docs/yaml/elementary
diff options
context:
space:
mode:
Diffstat (limited to 'docs/yaml/elementary')
-rw-r--r--docs/yaml/elementary/dict.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/yaml/elementary/dict.yml b/docs/yaml/elementary/dict.yml
index 3a5c484dd..525fbeefb 100644
--- a/docs/yaml/elementary/dict.yml
+++ b/docs/yaml/elementary/dict.yml
@@ -45,9 +45,11 @@ methods:
- name: keys
returns: array[str]
- description: Returns an array of keys in the dictionary.
+ description: Returns an array of keys in the dictionary, sorted in ascending order.
- name: values
returns: array[any]
- description: Returns an array of values in the dictionary.
since: 1.10.0
+ description: |
+ Returns an array of values in the dictionary, sorted by the
+ corresponding keys in ascending order.