From: Benjamin Peterson Date: Thu, 18 Feb 2016 07:42:46 +0000 (-0800) Subject: fix typo (closes #26378) X-Git-Tag: v2.7.12rc1~229 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=51b13e53fcd0dfc0fbaa2be9cab7814e5f98233e;p=thirdparty%2FPython%2Fcpython.git fix typo (closes #26378) --- diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst index cc45e6e489d7..9fe212861668 100644 --- a/Doc/howto/regex.rst +++ b/Doc/howto/regex.rst @@ -172,7 +172,7 @@ that limit. Repetitions such as ``*`` are :dfn:`greedy`; when repeating a RE, the matching engine will try to repeat it as many times as possible. If later portions of the pattern don't match, the matching engine will then back up and try again with -few repetitions. +fewer repetitions. A step-by-step example will make this more obvious. Let's consider the expression ``a[bcd]*b``. This matches the letter ``'a'``, zero or more letters