[Python-checkins] bpo-45132: Fix the reStructuredText markup error. (GH-28270)

serhiy-storchaka webhook-mailer at python.org
Fri Sep 10 08:40:16 EDT 2021


https://github.com/python/cpython/commit/17a1b3e63a5db4e581c0ef52751df2314f7249fa
commit: 17a1b3e63a5db4e581c0ef52751df2314f7249fa
branch: main
author: Serhiy Storchaka <storchaka at gmail.com>
committer: serhiy-storchaka <storchaka at gmail.com>
date: 2021-09-10T15:40:07+03:00
summary:

bpo-45132: Fix the reStructuredText markup error. (GH-28270)

files:
M Doc/library/wsgiref.rst

diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst
index 5454b1132d2b6..e924448b86d7f 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.



More information about the Python-checkins mailing list