We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b654a6c commit bdfae67Copy full SHA for bdfae67
1 file changed
Doc/library/re.rst
@@ -319,7 +319,7 @@ the second character. For example, ``\$`` matches the character ``'$'``.
319
Matches the empty string, but only at the beginning or end of a word. A word is
320
defined as a sequence of alphanumeric or underscore characters, so the end of a
321
word is indicated by whitespace or a non-alphanumeric, non-underscore character.
322
- Note that ``\b`` is defined as the boundary between ``\w`` and ``\ W``, so the
+ Note that ``\b`` is defined as the boundary between ``\w`` and ``\W``, so the
323
precise set of characters deemed to be alphanumeric depends on the values of the
324
``UNICODE`` and ``LOCALE`` flags. Inside a character range, ``\b`` represents
325
the backspace character, for compatibility with Python's string literals.
0 commit comments