]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-45132: Fix the reStructuredText markup error. (GH-28270)
authorSerhiy Storchaka <storchaka@gmail.com>
Fri, 10 Sep 2021 12:40:07 +0000 (15:40 +0300)
committerGitHub <noreply@github.com>
Fri, 10 Sep 2021 12:40:07 +0000 (15:40 +0300)
Doc/library/wsgiref.rst

index 5454b1132d2b6c1755f7c7506410c6ee1293d56e..e924448b86d7f379cc328e33d00cf4bbb9e9597d 100644 (file)
@@ -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.