aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src/orddict.xml
diff options
context:
space:
mode:
authorMichal Muskala <[email protected]>2016-11-16 11:54:26 +0100
committerMichal Muskala <[email protected]>2016-11-18 15:20:33 +0100
commitb93b7444230ebc358f8b0d64798e65f50a249e5a (patch)
tree414a244a280f1299e8d485973e25fed9f48bd845 /lib/stdlib/doc/src/orddict.xml
parentcd48b81b95860b3d91aefb871cbfcf4521c83315 (diff)
downloadotp-b93b7444230ebc358f8b0d64798e65f50a249e5a.tar.gz
otp-b93b7444230ebc358f8b0d64798e65f50a249e5a.tar.bz2
otp-b93b7444230ebc358f8b0d64798e65f50a249e5a.zip
Document the ordering used in ordsets and orddicts
Right now the exact order of elements is not specified, yet many programs rely on the ordering being the obvious one - erlang term order. It is only beneficial to make this an explicit part of the documentation.
Diffstat (limited to 'lib/stdlib/doc/src/orddict.xml')
-rw-r--r--lib/stdlib/doc/src/orddict.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/doc/src/orddict.xml b/lib/stdlib/doc/src/orddict.xml
index 076b06fc38..39b43809b6 100644
--- a/lib/stdlib/doc/src/orddict.xml
+++ b/lib/stdlib/doc/src/orddict.xml
@@ -38,7 +38,7 @@
<p>This module provides a <c>Key</c>-<c>Value</c> dictionary.
An <c>orddict</c> is a representation of a dictionary, where a
list of pairs is used to store the keys and values. The list is
- ordered after the keys.</p>
+ ordered after the keys in the <em>Erlang term order</em>.</p>
<p>This module provides the same interface as the
<seealso marker="dict"><c>dict(3)</c></seealso> module