diff options
-rw-r--r-- | Doc/library/asyncio-protocol.rst | 2 | ||||
-rw-r--r-- | Lib/asyncio/events.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst index 5182df5..6794fdf 100644 --- a/Doc/library/asyncio-protocol.rst +++ b/Doc/library/asyncio-protocol.rst @@ -515,7 +515,7 @@ Server .. class:: AbstractServer - Abstract server returned by create_service(). + Abstract server returned by :func:`BaseEventLoop.create_server`. .. method:: close() diff --git a/Lib/asyncio/events.py b/Lib/asyncio/events.py index c10faa7..6240019 100644 --- a/Lib/asyncio/events.py +++ b/Lib/asyncio/events.py @@ -99,7 +99,7 @@ class TimerHandle(Handle): class AbstractServer: - """Abstract server returned by create_service().""" + """Abstract server returned by create_server().""" def close(self): """Stop serving. This leaves existing connections open.""" |