]> granicus.if.org Git - python/commitdiff
#8472: fix wrong function name in functions.rst: itertools.filterfalse -> itertools...
authorEzio Melotti <ezio.melotti@gmail.com>
Tue, 20 Apr 2010 16:49:48 +0000 (16:49 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Tue, 20 Apr 2010 16:49:48 +0000 (16:49 +0000)
Doc/library/functions.rst

index 928e73a54e2c4a0d4cd5082cc3cfdd91ece9b7a0..1724abbbabe9b4e02af31955d540709d34430114 100644 (file)
@@ -402,7 +402,7 @@ available.  They are listed here in alphabetical order.
    iterable if function(item)]`` if function is not ``None`` and ``[item for item
    in iterable if item]`` if function is ``None``.
 
-   See :func:`itertools.filterfalse` for the complementary function that returns
+   See :func:`itertools.ifilterfalse` for the complementary function that returns
    elements of *iterable* for which *function* returns false.