asyncio: Fix docs for default event loop (#14308)

When the Windows default event loop changed, `asyncio-policy.rst` was updated but `asyncio-eventloop.rst` was missed.
This commit is contained in:
Ben Darnell 2019-06-22 13:38:21 -04:00 committed by Yury Selivanov
parent c8a35417db
commit 9ffca670ed
1 changed files with 1 additions and 1 deletions

View File

@ -1454,7 +1454,7 @@ asyncio ships with two different event loop implementations:
:class:`SelectorEventLoop` and :class:`ProactorEventLoop`.
By default asyncio is configured to use :class:`SelectorEventLoop`
on all platforms.
on Unix and :class:`ProactorEventLoop` on Windows.
.. class:: SelectorEventLoop