Skip to content

Commit 1370d9d

Browse files
bpo-41572: Fix grammar in BaseTransport.close docstring (pythonGH-21914) (pythonGH-21930)
Fix grammar in BaseTransport.close docstring. https://bugs.python.org/issue41572 Signed-off-by: Cleber Rosa <crosa@redhat.com> (cherry picked from commit 1afb42c) Co-authored-by: Cleber Rosa <cleber.gnu@gmail.com>
1 parent 7d0fef5 commit 1370d9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/asyncio/transports.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ def close(self):
2929
3030
Buffered data will be flushed asynchronously. No more data
3131
will be received. After all buffered data is flushed, the
32-
protocol's connection_lost() method will (eventually) called
33-
with None as its argument.
32+
protocol's connection_lost() method will (eventually) be
33+
called with None as its argument.
3434
"""
3535
raise NotImplementedError
3636

0 commit comments

Comments
 (0)