diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:39:13 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:39:13 (GMT) |
commit | 840c82ee8883d455a57b1505a2d47a10f89665c1 (patch) | |
tree | 61f02ce24655e53d16215b55f6aa112328e7d3ee /Doc | |
parent | 4a33724d47237718bd7d770cc1e859b3ad4fc1eb (diff) | |
download | cpython-840c82ee8883d455a57b1505a2d47a10f89665c1.zip cpython-840c82ee8883d455a57b1505a2d47a10f89665c1.tar.gz cpython-840c82ee8883d455a57b1505a2d47a10f89665c1.tar.bz2 |
Issue #25286: Accidentally dropped "the"
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 6e3083f..8b6dbac 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`. |