Skip to content

Commit af56c68

Browse files
miss-islingtonandresdelfino
authored andcommitted
Improve grammar of asynchronous iterator glossary entry (GH-8657)
(cherry picked from commit cf2c5e8) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
1 parent 0ee2a29 commit af56c68

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/glossary.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,10 @@ Glossary
123123
:meth:`__aiter__` method. Introduced by :pep:`492`.
124124

125125
asynchronous iterator
126-
An object that implements :meth:`__aiter__` and :meth:`__anext__`
126+
An object that implements the :meth:`__aiter__` and :meth:`__anext__`
127127
methods. ``__anext__`` must return an :term:`awaitable` object.
128-
:keyword:`async for` resolves awaitable returned from asynchronous
129-
iterator's :meth:`__anext__` method until it raises
128+
:keyword:`async for` resolves the awaitables returned by an asynchronous
129+
iterator's :meth:`__anext__` method until it raises a
130130
:exc:`StopAsyncIteration` exception. Introduced by :pep:`492`.
131131

132132
attribute

0 commit comments

Comments
 (0)