summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-03-12 17:05:04 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-03-12 17:05:04 (GMT)
commitc768d4caa81100a27dab517a8eccc18fea6843fc (patch)
tree58fc3262d536c13ff36235a2c61006bd91c3f0c3
parent814d31688802ec24787d159457fbb92e4569b130 (diff)
downloadcpython-c768d4caa81100a27dab517a8eccc18fea6843fc.zip
cpython-c768d4caa81100a27dab517a8eccc18fea6843fc.tar.gz
cpython-c768d4caa81100a27dab517a8eccc18fea6843fc.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 dca4de7..2b2ed40 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -152,9 +152,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,