]> granicus.if.org Git - python/commitdiff
Fix example in backreference description. Found by Alexander Heger on docs@.
authorGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 10:58:20 +0000 (12:58 +0200)
committerGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 10:58:20 +0000 (12:58 +0200)
Doc/library/re.rst

index 53d18903f1a252f5c6eb78ed01018f72b9e4cca1..91afbd497c945e32446dce3a0d328e32dd70e0a7 100644 (file)
@@ -322,7 +322,7 @@ the second character.  For example, ``\$`` matches the character ``'$'``.
 ``\number``
    Matches the contents of the group of the same number.  Groups are numbered
    starting from 1.  For example, ``(.+) \1`` matches ``'the the'`` or ``'55 55'``,
-   but not ``'the end'`` (note the space after the group).  This special sequence
+   but not ``'thethe'`` (note the space after the group).  This special sequence
    can only be used to match one of the first 99 groups.  If the first digit of
    *number* is 0, or *number* is 3 octal digits long, it will not be interpreted as
    a group match, but as the character with octal value *number*. Inside the