File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -133,13 +133,13 @@ The special characters are:
133133``* ``
134134 Causes the resulting RE to match 0 or more repetitions of the preceding RE, as
135135 many repetitions as are possible. ``ab* `` will match ``'a' ``, ``'ab' ``, or
136- ``'a' `` followed by any number of ``'b' `` s.
136+ ``'a' `` followed by any number of ``'b' ``\ s.
137137
138138.. index :: single: + (plus); in regular expressions
139139
140140``+ ``
141141 Causes the resulting RE to match 1 or more repetitions of the preceding RE.
142- ``ab+ `` will match ``'a' `` followed by any non-zero number of ``'b' `` s; it
142+ ``ab+ `` will match ``'a' `` followed by any non-zero number of ``'b' ``\ s; it
143143 will not match just ``'a' ``.
144144
145145.. index :: single: ? (question mark); in regular expressions
You can’t perform that action at this time.
0 commit comments