]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-29952: Use usual terminology of dict (GH-923)
authorINADA Naoki <methane@users.noreply.github.com>
Fri, 31 Mar 2017 06:43:35 +0000 (15:43 +0900)
committerGitHub <noreply@github.com>
Fri, 31 Mar 2017 06:43:35 +0000 (15:43 +0900)
s/keys and elements/keys and values/
(cherry picked from commit cdcac039fb447f2ab04efcacbe663751bb2cb4ec)

Doc/reference/expressions.rst

index 7c1f2a6dc2d39cff2553125fcd2a7651ab6c2dd7..d4d007330c79727d32f4367da64d275995a3d01a 100644 (file)
@@ -1195,7 +1195,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`.