summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-03 17:23:52 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-12-03 17:23:52 (GMT)
commitcf6f72e329838d774dbd9cbb795c7d213ebc55bc (patch)
tree3b814c3a0f1cb083c6bb2edd7bf01b8fb8b3dd21 /Lib/asyncio/events.py
parentc6fba92ebc552da59896a280beb43bfb4f915555 (diff)
downloadcpython-cf6f72e329838d774dbd9cbb795c7d213ebc55bc.zip
cpython-cf6f72e329838d774dbd9cbb795c7d213ebc55bc.tar.gz
cpython-cf6f72e329838d774dbd9cbb795c7d213ebc55bc.tar.bz2
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 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."""