diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-12-03 17:23:52 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-12-03 17:23:52 (GMT) |
commit | cf6f72e329838d774dbd9cbb795c7d213ebc55bc (patch) | |
tree | 3b814c3a0f1cb083c6bb2edd7bf01b8fb8b3dd21 /Lib/asyncio/events.py | |
parent | c6fba92ebc552da59896a280beb43bfb4f915555 (diff) | |
download | cpython-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.py | 2 |
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.""" |