]> granicus.if.org Git - python/commitdiff
#14461: fix wording.
authorEzio Melotti <ezio.melotti@gmail.com>
Sun, 29 Apr 2012 04:34:22 +0000 (07:34 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Sun, 29 Apr 2012 04:34:22 +0000 (07:34 +0300)
Doc/library/re.rst

index b82b39797e2806af39e3a0ef1bfdaab5eb8fd7b0..56e605772b6ddac7d9bf2d0be4d2eddc44e6c785 100644 (file)
@@ -273,7 +273,7 @@ The special characters are:
    lookbehind will back up 3 characters and check if the contained pattern matches.
    The contained pattern must only match strings of some fixed length, meaning that
    ``abc`` or ``a|b`` are allowed, but ``a*`` and ``a{3,4}`` are not.  Note that
-   patterns which start with positive lookbehind assertions will never match at the
+   patterns which start with positive lookbehind assertions will not match at the
    beginning of the string being searched; you will most likely want to use the
    :func:`search` function rather than the :func:`match` function: