]> granicus.if.org Git - python/commitdiff
fix typo (closes #26378)
authorBenjamin Peterson <benjamin@python.org>
Thu, 18 Feb 2016 07:42:46 +0000 (23:42 -0800)
committerBenjamin Peterson <benjamin@python.org>
Thu, 18 Feb 2016 07:42:46 +0000 (23:42 -0800)
Doc/howto/regex.rst

index 70721a9f27f85dbecf1bf7e955f6b5a3db254ace..909420bfa9558368ef084812a122a04c158ea306 100644 (file)
@@ -178,7 +178,7 @@ are usually not written to match that much data.
 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