diff options
author | Tim Golden <mail@timgolden.me.uk> | 2012-10-01 15:40:40 (GMT) |
---|---|---|
committer | Tim Golden <mail@timgolden.me.uk> | 2012-10-01 15:40:40 (GMT) |
commit | 621302c3f45eb089754d779b3c4406c4410b52f8 (patch) | |
tree | a0a7f31d5b2b68958dd38931add14158ebbcfe4a /Lib/codecs.py | |
parent | f41d2025551b8d039d8d050cf7b38bcfa30d9b30 (diff) | |
download | cpython-621302c3f45eb089754d779b3c4406c4410b52f8.zip cpython-621302c3f45eb089754d779b3c4406c4410b52f8.tar.gz cpython-621302c3f45eb089754d779b3c4406c4410b52f8.tar.bz2 |
Issue16097 Fix small typo in comment (patch by Wael Al Jishi)
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r-- | Lib/codecs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index 9901d5c..48d4c9c 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -461,7 +461,7 @@ class StreamReader(Codec): # read until we get the required number of characters (if available) while True: - # can the request can be satisfied from the character buffer? + # can the request be satisfied from the character buffer? if chars < 0: if size < 0: if self.charbuffer: |