]> granicus.if.org Git - python/commitdiff
bpo-29952: Use usual terminology of dict (GH-917)
authorcocoatomo <cocoatomo77@gmail.com>
Fri, 31 Mar 2017 05:48:49 +0000 (14:48 +0900)
committerINADA Naoki <methane@users.noreply.github.com>
Fri, 31 Mar 2017 05:48:49 +0000 (14:48 +0900)
s/keys and elements/keys and values/

Doc/reference/expressions.rst

index d80768ac07dc0eb77b8f85a3acbaad2ad1959217..c4f6c55c7ca3aac346c20aef1a4f2698ba9fad93 100644 (file)
@@ -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`.