diff options
-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 |