From: Martin Panter Date: Wed, 7 Oct 2015 10:39:13 +0000 (+0000) Subject: Issue #25286: Accidentally dropped "the" X-Git-Tag: v2.7.11rc1~75 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=840c82ee8883d455a57b1505a2d47a10f89665c1;p=thirdparty%2FPython%2Fcpython.git Issue #25286: Accidentally dropped "the" --- diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 6e3083fce5c2..8b6dbac81351 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -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`.