summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-10-05 16:28:21 -0400
committerBrett Cannon <brett@python.org>2014-10-05 16:28:21 -0400
commit165e06f7cbb9fd1861aea0cc08ebd331597afff5 (patch)
tree5125c30595fed1c7ae909f3fa134f91ef296563a /documentation
parent4711b7ae8befb52017ed5abdd272f6e5eff61606 (diff)
downloadsix-165e06f7cbb9fd1861aea0cc08ebd331597afff5.tar.gz
Address PR comments
Diffstat (limited to 'documentation')
-rw-r--r--documentation/index.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/index.rst b/documentation/index.rst
index 594976b..1cd87de 100644
--- a/documentation/index.rst
+++ b/documentation/index.rst
@@ -205,21 +205,21 @@ functions and methods is the stdlib :mod:`py3:inspect` module.
.. function:: viewkeys(dictionary, **kwargs)
- Returns a view over *dictionary*\'s keys. This replaces
+ Return a view over *dictionary*\'s keys. This replaces
``dictionary.viewkeys()`` on Python 2.7 and ``dictionary.keys()`` on
Python 3. *kwargs* are passed through to the underlying method.
.. function:: viewvalues(dictionary, **kwargs)
- Returns a view over *dictionary*\'s values. This replaces
+ Return a view over *dictionary*\'s values. This replaces
``dictionary.viewvalues()`` on Python 2.7 and ``dictionary.values()`` on
Python 3. *kwargs* are passed through to the underlying method.
.. function:: viewitems(dictionary, **kwargs)
- Returns a view over *dictionary*\'s items. This replaces
+ Return a view over *dictionary*\'s items. This replaces
``dictionary.viewitems()`` on Python 2.7 and ``dictionary.items()`` on
Python 3. *kwargs* are passed through to the underlying method.