summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-09-10 12:40:07 (GMT)
committerGitHub <noreply@github.com>2021-09-10 12:40:07 (GMT)
commit17a1b3e63a5db4e581c0ef52751df2314f7249fa (patch)
tree4a347a93144cae1035729e3cdd363b24e2a17bed /Doc
parent707137b8637feef37b2e06a851fdca9d1b945861 (diff)
downloadcpython-17a1b3e63a5db4e581c0ef52751df2314f7249fa.zip
cpython-17a1b3e63a5db4e581c0ef52751df2314f7249fa.tar.gz
cpython-17a1b3e63a5db4e581c0ef52751df2314f7249fa.tar.bz2
bpo-45132: Fix the reStructuredText markup error. (GH-28270)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/wsgiref.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst
index 5454b11..e924448 100644
--- a/Doc/library/wsgiref.rst
+++ b/Doc/library/wsgiref.rst
@@ -151,7 +151,7 @@ also provides these miscellaneous utilities:
.. class:: FileWrapper(filelike, blksize=8192)
A wrapper to convert a file-like object to an :term:`iterator`. The resulting objects
- are :term`iterable`\ s. As the object is iterated over, the
+ are :term:`iterable`\ s. As the object is iterated over, the
optional *blksize* parameter will be repeatedly passed to the *filelike*
object's :meth:`read` method to obtain bytestrings to yield. When :meth:`read`
returns an empty bytestring, iteration is ended and is not resumable.