summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-04-29 07:34:46 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2012-04-29 07:34:46 +0300
commit0a6b5419b02862bf6270bbd27f472eb2f02b8ae9 (patch)
treeb7b861d304feec7564c8a4737c794a1db4ca3080 /Doc
parent8dc500476a3c176e10ae2f969235b5498c6b0393 (diff)
downloadcpython-git-0a6b5419b02862bf6270bbd27f472eb2f02b8ae9.tar.gz
#14461: fix wording.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/re.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index 07868b2a6f..d97c937293 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -278,7 +278,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: