summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-03-11 21:06:03 -0700
committerSenthil Kumaran <senthil@uthcode.com>2012-03-11 21:06:03 -0700
commit68e994e9e4a30fd3195b6cca46ff057f43021fc8 (patch)
tree6d40353e38e9b89187a77f36229d444405601777
parentb69ef16fe63e6de91c5d659bd83d9eff67b38d98 (diff)
parenta7fccd8b14885a76525e11baa1f9db7792d9a26c (diff)
downloadcpython-git-68e994e9e4a30fd3195b6cca46ff057f43021fc8.tar.gz
closes issue14257 - cpython - minor error in glossary wording regarding __hash__
-rw-r--r--Doc/glossary.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index f5ca0d9c8d..3ac1031bbe 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