fix typo (closes #26378)

This commit is contained in:
Benjamin Peterson 2016-02-17 23:42:46 -08:00
parent 1378f7ca68
commit 8f0432ffbb
1 changed files with 1 additions and 1 deletions

View 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 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 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 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 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 expression ``a[bcd]*b``. This matches the letter ``'a'``, zero or more letters