summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2010-05-09 14:04:59 (GMT)
committerEric Smith <eric@trueblade.com>2010-05-09 14:04:59 (GMT)
commit368ede83d9c96004dc5c489511936a588537f410 (patch)
tree8382f401b3394d8a211eca29ac6a942980ba792d
parent53a92eb3c398ced54d985730fa70f946e18813a5 (diff)
downloadcpython-368ede83d9c96004dc5c489511936a588537f410.zip
cpython-368ede83d9c96004dc5c489511936a588537f410.tar.gz
cpython-368ede83d9c96004dc5c489511936a588537f410.tar.bz2
Issue 8671: Whitespace fix.
-rw-r--r--Doc/library/re.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index 75a6071..758d02e 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -319,7 +319,7 @@ the second character. For example, ``\$`` matches the character ``'$'``.
Matches the empty string, but only at the beginning or end of a word. A word is
defined as a sequence of alphanumeric or underscore characters, so the end of a
word is indicated by whitespace or a non-alphanumeric, non-underscore character.
- 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
precise set of characters deemed to be alphanumeric depends on the values of the
``UNICODE`` and ``LOCALE`` flags. Inside a character range, ``\b`` represents
the backspace character, for compatibility with Python's string literals.