Fix markup.

This commit is contained in:
Berker Peksag 2015-04-18 03:09:31 +03:00
parent 08aaa86f8d
commit 86fce1264c
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ implementation, and *asynchronous iterator* can call asynchronous code in its
2. An *asynchronous iterator object* must implement an ``__anext__`` method
returning an *awaitable*.
3. To stop iteration```__anext__`` must raise a ``StopAsyncIteration``
3. To stop iteration ``__anext__`` must raise a ``StopAsyncIteration``
exception.
An example of asynchronous iterable::