diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2017-03-31 06:43:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-31 06:43:10 (GMT) |
commit | 4c75fbb485c0e42181aab95c2ae92c597915827c (patch) | |
tree | 72ef15b6d898b5549e41a58ba4496326bc005ef5 /Doc/reference | |
parent | 8d1f935945ca8cf3665315e0f82358fffe689353 (diff) | |
download | cpython-4c75fbb485c0e42181aab95c2ae92c597915827c.zip cpython-4c75fbb485c0e42181aab95c2ae92c597915827c.tar.gz cpython-4c75fbb485c0e42181aab95c2ae92c597915827c.tar.bz2 |
bpo-29952: Use usual terminology of dict (GH-922)
s/keys and elements/keys and values/
(cherry picked from commit cdcac039fb447f2ab04efcacbe663751bb2cb4ec)
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/expressions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index d80768a..c4f6c55 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -1355,7 +1355,7 @@ built-in types. true). * Mappings (instances of :class:`dict`) compare equal if and only if they have - equal `(key, value)` pairs. Equality comparison of the keys and elements + equal `(key, value)` pairs. Equality comparison of the keys and values enforces reflexivity. Order comparisons (``<``, ``>``, ``<=``, and ``>=``) raise :exc:`TypeError`. |