]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #25286: Accidentally dropped "the"
authorMartin Panter <vadmium+py@gmail.com>
Wed, 7 Oct 2015 10:39:13 +0000 (10:39 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Wed, 7 Oct 2015 10:39:13 +0000 (10:39 +0000)
Doc/glossary.rst

index 6e3083fce5c29fc5ba60c1323f97fb6f430217b1..8b6dbac81351071965f9891fe390b8269658266f 100644 (file)
@@ -186,7 +186,7 @@ Glossary
       The objects returned from :meth:`dict.viewkeys`, :meth:`dict.viewvalues`,
       and :meth:`dict.viewitems` are called dictionary views. They provide a dynamic
       view on the dictionary’s entries, which means that when the dictionary
-      changes, the view reflects these changes. To force
+      changes, the view reflects these changes. To force the
       dictionary view to become a full list use ``list(dictview)``.  See
       :ref:`dict-views`.