]> granicus.if.org Git - python/commitdiff
Issue 8671: Whitespace fix.
authorEric Smith <eric@trueblade.com>
Sun, 9 May 2010 14:04:59 +0000 (14:04 +0000)
committerEric Smith <eric@trueblade.com>
Sun, 9 May 2010 14:04:59 +0000 (14:04 +0000)
Doc/library/re.rst

index 75a60719c8befeefd0772557db7d044d1f6e0adf..758d02e2e494d89bc714ebfa56fc4d3393feb581 100644 (file)
@@ -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.