summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-02-24 16:21:40 (GMT)
committerGitHub <noreply@github.com>2023-02-24 16:21:40 (GMT)
commit3b4f8fc83dcea1a9d0bc5bd33592e5a3da41fa71 (patch)
tree89ea1389774e6a4d4bcdf621a7e6669440abd443 /Doc/library/functions.rst
parentdd0843ac1d029cb7331a670b37dd55ab5f0b3c7d (diff)
downloadcpython-3b4f8fc83dcea1a9d0bc5bd33592e5a3da41fa71.zip
cpython-3b4f8fc83dcea1a9d0bc5bd33592e5a3da41fa71.tar.gz
cpython-3b4f8fc83dcea1a9d0bc5bd33592e5a3da41fa71.tar.bz2
gh-102105 Fix wording in filterfalse/quantify/filter (GH-102189)
(cherry picked from commit 81bf10e4f20a0f6d36b67085eefafdf7ebb97c33) Co-authored-by: Stefan Pochmann <609905+pochmann@users.noreply.github.com>
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r--Doc/library/functions.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index d0da05f..22972c0 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -622,7 +622,7 @@ are always available. They are listed here in alphabetical order.
.. function:: filter(function, iterable)
Construct an iterator from those elements of *iterable* for which *function*
- returns true. *iterable* may be either a sequence, a container which
+ is true. *iterable* may be either a sequence, a container which
supports iteration, or an iterator. If *function* is ``None``, the identity
function is assumed, that is, all elements of *iterable* that are false are
removed.
@@ -633,7 +633,7 @@ are always available. They are listed here in alphabetical order.
``None``.
See :func:`itertools.filterfalse` for the complementary function that returns
- elements of *iterable* for which *function* returns false.
+ elements of *iterable* for which *function* is false.
.. class:: float(x=0.0)