@@ -88,8 +88,8 @@ Return an iterator over all keys in a dictionary.
8888When the keys are stored internally in a hash table,
8989as is the case for `Dict`,
9090the order in which they are returned may vary.
91- But `keys(a)` and `values (a)` both iterate `a` and
92- return the elements in the same order.
91+ But `keys(a)`, `values(a)` and `pairs (a)` all iterate `a`
92+ and return the elements in the same order.
9393
9494# Examples
9595```jldoctest
@@ -114,8 +114,8 @@ Return an iterator over all values in a collection.
114114When the values are stored internally in a hash table,
115115as is the case for `Dict`,
116116the order in which they are returned may vary.
117- But `keys(a)` and `values (a)` both iterate `a` and
118- return the elements in the same order.
117+ But `keys(a)`, `values(a)` and `pairs (a)` all iterate `a`
118+ and return the elements in the same order.
119119
120120# Examples
121121```jldoctest
@@ -138,6 +138,10 @@ values(a::AbstractDict) = ValueIterator(a)
138138Return an iterator over `key => value` pairs for any
139139collection that maps a set of keys to a set of values.
140140This includes arrays, where the keys are the array indices.
141+ When the entries are stored internally in a hash table,
142+ as is the case for `Dict`, the order in which they are returned may vary.
143+ But `keys(a)`, `values(a)` and `pairs(a)` all iterate `a`
144+ and return the elements in the same order.
141145
142146# Examples
143147```jldoctest
0 commit comments