summaryrefslogtreecommitdiffstats
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-03-12 04:04:56 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-03-12 04:04:56 (GMT)
commita7fccd8b14885a76525e11baa1f9db7792d9a26c (patch)
tree2a47188cf743e60984632918730685d364630998 /Doc/glossary.rst
parent1f9a8354002dbb29f38bfbd4273ce62e40ac80ba (diff)
downloadcpython-a7fccd8b14885a76525e11baa1f9db7792d9a26c.zip
cpython-a7fccd8b14885a76525e11baa1f9db7792d9a26c.tar.gz
cpython-a7fccd8b14885a76525e11baa1f9db7792d9a26c.tar.bz2
closes issue14257 - 3.2 minor error in glossary wording regarding __hash__
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r--Doc/glossary.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 3b211ae..079cfdf 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -147,7 +147,7 @@ Glossary
dictionary
An associative array, where arbitrary keys are mapped to values. The keys
- can be any object with :meth:`__hash__` function and :meth:`__eq__`
+ can be any object with :meth:`__hash__` method and :meth:`__eq__`
methods. Called a hash in Perl.
docstring