diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-07-28 17:31:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 17:31:19 (GMT) |
commit | 9337c60ba8da897f74bddef072d12093cc8c82c5 (patch) | |
tree | be827b604b3959d8957e712b26f70f30aca28e8c /Doc/library | |
parent | 019a8b08fa28b26e009fd10395c7b767848b4e77 (diff) | |
download | cpython-9337c60ba8da897f74bddef072d12093cc8c82c5.zip cpython-9337c60ba8da897f74bddef072d12093cc8c82c5.tar.gz cpython-9337c60ba8da897f74bddef072d12093cc8c82c5.tar.bz2 |
bpo-44763: [doc] remove repetitive sentence from textwrap.wrap (GH-27423) (GH-27427)
(cherry picked from commit cb1d76f10ab33dddd0dbd64e6506bf7c065d499b)
Co-authored-by: Jack DeVries <58614260+jdevries3133@users.noreply.github.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/textwrap.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/textwrap.rst b/Doc/library/textwrap.rst index b729b83..7780e24 100644 --- a/Doc/library/textwrap.rst +++ b/Doc/library/textwrap.rst @@ -28,7 +28,7 @@ functions should be good enough; otherwise, you should use an instance of newlines. Optional keyword arguments correspond to the instance attributes of - :class:`TextWrapper`, documented below. *width* defaults to ``70``. + :class:`TextWrapper`, documented below. See the :meth:`TextWrapper.wrap` method for additional details on how :func:`wrap` behaves. |