From 17a1b3e63a5db4e581c0ef52751df2314f7249fa Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Fri, 10 Sep 2021 15:40:07 +0300 Subject: [PATCH] bpo-45132: Fix the reStructuredText markup error. (GH-28270) --- Doc/library/wsgiref.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.47.3