summaryrefslogtreecommitdiff
path: root/Lib/asyncio/events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-03 18:23:52 +0100
committerVictor Stinner <victor.stinner@gmail.com>2013-12-03 18:23:52 +0100
commit0febed2b5f658a68682e4db1b36a0dd073a44298 (patch)
tree7c06ecec70719167d01f79b234512d25baf463eb /Lib/asyncio/events.py
parentf1da067ec8d734971b7a50de03a06dcd73128624 (diff)
downloadcpython-0febed2b5f658a68682e4db1b36a0dd073a44298.tar.gz
Fix typo in asyncio.AbstractServer documentation
Diffstat (limited to 'Lib/asyncio/events.py')
-rw-r--r--Lib/asyncio/events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/events.py b/Lib/asyncio/events.py
index c10faa75b0..62400195a2 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."""