From: Serhiy Storchaka Date: Fri, 10 Sep 2021 12:40:07 +0000 (+0300) Subject: bpo-45132: Fix the reStructuredText markup error. (GH-28270) X-Git-Tag: v3.11.0a1~210 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=17a1b3e63a5db4e581c0ef52751df2314f7249fa;p=thirdparty%2FPython%2Fcpython.git bpo-45132: Fix the reStructuredText markup error. (GH-28270) --- diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst index 5454b1132d2b..e924448b86d7 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.