summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:10:23 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:10:23 (GMT)
commitd65c9496da3485ac077fa8fd374b061afdd3605e (patch)
tree70d446dd505e744bcdf7638e6dc31fde8d4d9310 /Lib/asyncio
parent7462b64911f1e2df2de2285ddbf8b156b5cdc418 (diff)
downloadcpython-d65c9496da3485ac077fa8fd374b061afdd3605e.zip
cpython-d65c9496da3485ac077fa8fd374b061afdd3605e.tar.gz
cpython-d65c9496da3485ac077fa8fd374b061afdd3605e.tar.bz2
Issue #25523: Further a-to-an corrections.
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/sslproto.py2
-rw-r--r--Lib/asyncio/transports.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py
index 0a8c090..9e08b6f 100644
--- a/Lib/asyncio/sslproto.py
+++ b/Lib/asyncio/sslproto.py
@@ -349,7 +349,7 @@ class _SSLProtocolTransport(transports._FlowControlMixin,
high-water limit. Neither value can be negative.
The defaults are implementation-specific. If only the
- high-water limit is given, the low-water limit defaults to a
+ high-water limit is given, the low-water limit defaults to an
implementation-specific value less than or equal to the
high-water limit. Setting high to zero forces low to zero as
well, and causes pause_writing() to be called whenever the
diff --git a/Lib/asyncio/transports.py b/Lib/asyncio/transports.py
index 70b323f..03099e3 100644
--- a/Lib/asyncio/transports.py
+++ b/Lib/asyncio/transports.py
@@ -62,7 +62,7 @@ class WriteTransport(BaseTransport):
high-water limit. Neither value can be negative.
The defaults are implementation-specific. If only the
- high-water limit is given, the low-water limit defaults to a
+ high-water limit is given, the low-water limit defaults to an
implementation-specific value less than or equal to the
high-water limit. Setting high to zero forces low to zero as
well, and causes pause_writing() to be called whenever the