summaryrefslogtreecommitdiff
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r--Doc/glossary.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index c4b6358132..5efc45d0e3 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -523,7 +523,7 @@ Glossary
:attr:`__class__` attribute or can be retrieved with ``type(obj)``.
view
- The objects returned from :meth:`dict.keys`, :meth:`dict.items`, and
+ The objects returned from :meth:`dict.keys`, :meth:`dict.values`, and
:meth:`dict.items` are called dictionary views. They are lazy sequences
that will see changes in the underlying dictionary. To force the
dictionary view to become a full list use ``list(dictview)``. See