X Tutup
Skip to content

Commit 8f0432f

Browse files
committed
fix typo (closes python#26378)
1 parent 1378f7c commit 8f0432f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/howto/regex.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ are usually not written to match that much data.
178178
Repetitions such as ``*`` are :dfn:`greedy`; when repeating a RE, the matching
179179
engine will try to repeat it as many times as possible. If later portions of the
180180
pattern don't match, the matching engine will then back up and try again with
181-
few repetitions.
181+
fewer repetitions.
182182

183183
A step-by-step example will make this more obvious. Let's consider the
184184
expression ``a[bcd]*b``. This matches the letter ``'a'``, zero or more letters

0 commit comments

Comments
 (0)
X Tutup