diff options
author | Ram Rachum <ram@rachum.com> | 2020-06-25 21:50:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 21:50:37 (GMT) |
commit | 77ed29b2c2742b694cac6db5976afc31b58e4803 (patch) | |
tree | ea52ddc66d553407915b9e5999210817e8b542e9 /Doc | |
parent | 847f94f47b104aec678d1d2a2d8fe23d817f375e (diff) | |
download | cpython-77ed29b2c2742b694cac6db5976afc31b58e4803.zip cpython-77ed29b2c2742b694cac6db5976afc31b58e4803.tar.gz cpython-77ed29b2c2742b694cac6db5976afc31b58e4803.tar.bz2 |
Fix typo in functions.rst (GH-21131)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 0577de6..f4110c3 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1773,7 +1773,7 @@ are always available. They are listed here in alphabetical order. ValueError: zip() argument 2 is longer than argument 1 Without the ``strict=True`` argument, any bug that results in iterables of - different lengths will be silenced, possibly mainfesting as a hard-to-find + different lengths will be silenced, possibly manifesting as a hard-to-find bug in another part of the program. * Shorter iterables can be padded with a constant value to make all the |