diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-18 22:27:48 -0500 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-18 22:27:48 -0500 |
commit | dec1a45fd1b37d4688fa5846a0d32a2393808fb1 (patch) | |
tree | c0affa11a1d58436f2b109e2330bf104ae000afd /Lib/asyncio/selector_events.py | |
parent | 74d519fcc685f903a9127987ae53ff75eaf17d73 (diff) | |
download | cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.tar.gz cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.zip |
asyncio: Fix spelling and typos.
Thanks to Vajrasky Kok for discovering some of them.
Diffstat (limited to 'Lib/asyncio/selector_events.py')
-rw-r--r-- | Lib/asyncio/selector_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/selector_events.py b/Lib/asyncio/selector_events.py index c142356f721..aa427459b1c 100644 --- a/Lib/asyncio/selector_events.py +++ b/Lib/asyncio/selector_events.py @@ -213,7 +213,7 @@ class BaseSelectorEventLoop(base_events.BaseEventLoop): def _sock_recv(self, fut, registered, sock, n): # _sock_recv() can add itself as an I/O callback if the operation can't - # be done immediatly. Don't use it directly, call sock_recv(). + # be done immediately. Don't use it directly, call sock_recv(). fd = sock.fileno() if registered: # Remove the callback early. It should be rare that the |