summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/transports.py
diff options
context:
space:
mode:
authorCleber Rosa <cleber.gnu@gmail.com>2020-08-20 12:40:01 (GMT)
committerGitHub <noreply@github.com>2020-08-20 12:40:01 (GMT)
commit1afb42cfa82dad0ddd726f59c6c5fcb3962314db (patch)
tree71f8fcac3289d0016352a3b89d0da354b725794e /Lib/asyncio/transports.py
parent2ce39631f679e14132a54dc90ce764259d26e166 (diff)
downloadcpython-1afb42cfa82dad0ddd726f59c6c5fcb3962314db.zip
cpython-1afb42cfa82dad0ddd726f59c6c5fcb3962314db.tar.gz
cpython-1afb42cfa82dad0ddd726f59c6c5fcb3962314db.tar.bz2
bpo-41572: Fix grammar in BaseTransport.close docstring (GH-21914)
Fix grammar in BaseTransport.close docstring. https://bugs.python.org/issue41572 Signed-off-by: Cleber Rosa <crosa@redhat.com>
Diffstat (limited to 'Lib/asyncio/transports.py')
-rw-r--r--Lib/asyncio/transports.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/transports.py b/Lib/asyncio/transports.py
index 513b1c0..45e155c 100644
--- a/Lib/asyncio/transports.py
+++ b/Lib/asyncio/transports.py
@@ -29,8 +29,8 @@ class BaseTransport:
Buffered data will be flushed asynchronously. No more data
will be received. After all buffered data is flushed, the
- protocol's connection_lost() method will (eventually) called
- with None as its argument.
+ protocol's connection_lost() method will (eventually) be
+ called with None as its argument.
"""
raise NotImplementedError