We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dae2062 + aebcbd5 commit d938751Copy full SHA for d938751
v3/docs/TUTORIAL.md
@@ -1410,8 +1410,7 @@ and could be used as a means of retrieving successive data items as they arrive
1410
from a read-only device. An asynchronous iterable calls asynchronous code in
1411
its `next` method. The class must conform to the following requirements:
1412
1413
- * It has an `__aiter__` method defined with `async def`and returning the
1414
- asynchronous iterator.
+ * It has an `__aiter__` method returning the asynchronous iterator.
1415
* It has an ` __anext__` method which is a task - i.e. defined with
1416
`async def` and containing at least one `await` statement. To stop
1417
iteration it must raise a `StopAsyncIteration` exception.
0 commit comments