diff options
author | Zac Bentley <zbentley@users.noreply.github.com> | 2021-06-02 15:00:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-02 15:00:25 (GMT) |
commit | 225caf78d1096355b7ab072898e28f7ea500ab0f (patch) | |
tree | 166bb946efacc01d9a0b479949bfb21bf8fae66d | |
parent | bdb56902a3bfe12b10f85a941d5dd0eae739f1a8 (diff) | |
download | cpython-225caf78d1096355b7ab072898e28f7ea500ab0f.zip cpython-225caf78d1096355b7ab072898e28f7ea500ab0f.tar.gz cpython-225caf78d1096355b7ab072898e28f7ea500ab0f.tar.bz2 |
Typo fix in asyncio-eventloop.rst (GH-26482)
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index f34fe09..83ab736 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -1440,7 +1440,7 @@ Do not instantiate the class directly. Start accepting connections. This method is idempotent, so it can be called when - the server is already being serving. + the server is already serving. The *start_serving* keyword-only parameter to :meth:`loop.create_server` and |