diff options
-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`. |