summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-02 04:20:33 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-11-02 04:20:33 (GMT)
commitd2ad5718ad955a13cf570bacad1d7800d995da33 (patch)
tree8701db861a6620fbb4cd000fd1932e5a0f8f6ffe /Doc/reference
parent2eb819f7a82c7eb61f2d253894d9973f0ec21df2 (diff)
downloadcpython-d2ad5718ad955a13cf570bacad1d7800d995da33.zip
cpython-d2ad5718ad955a13cf570bacad1d7800d995da33.tar.gz
cpython-d2ad5718ad955a13cf570bacad1d7800d995da33.tar.bz2
Issue #25523: Further a-to-an corrections new in 3.5
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/datamodel.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 3032dc8..764c491 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -2358,7 +2358,7 @@ An *asynchronous iterable* is able to call asynchronous code in its
``__aiter__`` implementation, and an *asynchronous iterator* can call
asynchronous code in its ``__anext__`` method.
-Asynchronous iterators can be used in a :keyword:`async for` statement.
+Asynchronous iterators can be used in an :keyword:`async for` statement.
.. method:: object.__aiter__(self)
@@ -2393,7 +2393,7 @@ Asynchronous Context Managers
An *asynchronous context manager* is a *context manager* that is able to
suspend execution in its ``__aenter__`` and ``__aexit__`` methods.
-Asynchronous context managers can be used in a :keyword:`async with` statement.
+Asynchronous context managers can be used in an :keyword:`async with` statement.
.. method:: object.__aenter__(self)