summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/protocols.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-02-19 03:27:48 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2014-02-19 03:27:48 (GMT)
commitdec1a45fd1b37d4688fa5846a0d32a2393808fb1 (patch)
treec0affa11a1d58436f2b109e2330bf104ae000afd /Lib/asyncio/protocols.py
parent74d519fcc685f903a9127987ae53ff75eaf17d73 (diff)
downloadcpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.zip
cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.tar.gz
cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.tar.bz2
asyncio: Fix spelling and typos.
Thanks to Vajrasky Kok for discovering some of them.
Diffstat (limited to 'Lib/asyncio/protocols.py')
-rw-r--r--Lib/asyncio/protocols.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/protocols.py b/Lib/asyncio/protocols.py
index 3c4f3f4..52fc25c 100644
--- a/Lib/asyncio/protocols.py
+++ b/Lib/asyncio/protocols.py
@@ -114,7 +114,7 @@ class SubprocessProtocol(BaseProtocol):
def pipe_data_received(self, fd, data):
"""Called when the subprocess writes data into stdout/stderr pipe.
- fd is int file dascriptor.
+ fd is int file descriptor.
data is bytes object.
"""