diff options
author | Guido van Rossum <guido@python.org> | 2013-11-23 19:51:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-11-23 19:51:09 (GMT) |
commit | 488b0da5da32fbf356e6bc8c9f8b4e34888408e2 (patch) | |
tree | 363edcbe6bb2a0b6ad56f7623b815450a7827342 /Lib/asyncio/transports.py | |
parent | 6bdd98622e88bed3ede325b0ffc2bb8d63cde52f (diff) | |
download | cpython-488b0da5da32fbf356e6bc8c9f8b4e34888408e2.zip cpython-488b0da5da32fbf356e6bc8c9f8b4e34888408e2.tar.gz cpython-488b0da5da32fbf356e6bc8c9f8b4e34888408e2.tar.bz2 |
Fix typo.
Diffstat (limited to 'Lib/asyncio/transports.py')
-rw-r--r-- | Lib/asyncio/transports.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/transports.py b/Lib/asyncio/transports.py index 3774812..98f9224 100644 --- a/Lib/asyncio/transports.py +++ b/Lib/asyncio/transports.py @@ -105,7 +105,7 @@ class WriteTransport(BaseTransport): raise NotImplementedError def abort(self): - """Closs the transport immediately. + """Close the transport immediately. Buffered data will be lost. No more data will be received. The protocol's connection_lost() method will (eventually) be |