summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-03-12 17:05:58 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-03-12 17:05:58 (GMT)
commit9186850088a94627b60fa80102edc858c332b51c (patch)
tree79db0e2794d309617eecbfafb3e70c1af1f8fe6f
parente976fc74647f679519edde2a1e0b73ff711e079b (diff)
parent6080db76066a83fc7c2e50975b616f649fbfb2d6 (diff)
downloadcpython-9186850088a94627b60fa80102edc858c332b51c.zip
cpython-9186850088a94627b60fa80102edc858c332b51c.tar.gz
cpython-9186850088a94627b60fa80102edc858c332b51c.tar.bz2
closes issue14257 - Grammatical fix
-rw-r--r--Doc/glossary.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 3ac1031..062918a 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -146,9 +146,9 @@ Glossary
For more information about descriptors' methods, see :ref:`descriptors`.
dictionary
- An associative array, where arbitrary keys are mapped to values. The keys
- can be any object with :meth:`__hash__` method and :meth:`__eq__`
- methods. Called a hash in Perl.
+ An associative array, where arbitrary keys are mapped to values. The
+ keys can be any object with :meth:`__hash__` and :meth:`__eq__` methods.
+ Called a hash in Perl.
docstring
A string literal which appears as the first expression in a class,