Skip to content

Commit 8d52469

Browse files
committed
Doc: Connect some s in RE
1 parent f970235 commit 8d52469

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/re.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)