]> granicus.if.org Git - python/commitdiff
Fix a typo caught by Gabriella Capone on docs@
authorZachary Ware <zachary.ware@gmail.com>
Sun, 19 Oct 2014 06:06:58 +0000 (01:06 -0500)
committerZachary Ware <zachary.ware@gmail.com>
Sun, 19 Oct 2014 06:06:58 +0000 (01:06 -0500)
Doc/library/re.rst

index e5bbd035aa3065bb9ef4287df27d10c28909153a..2910d36e78fb4c92431082cb081c774e9cc308e3 100644 (file)
@@ -393,7 +393,7 @@ the second character.  For example, ``\$`` matches the character ``'$'``.
    any non-alphanumeric character; this is equivalent to the set ``[^a-zA-Z0-9_]``.
    With :const:`LOCALE`, it will match any character not in the set ``[0-9_]``, and
    not defined as alphanumeric for the current locale. If :const:`UNICODE` is set,
-   this will match anything other than ``[0-9_]`` plus characters classied as
+   this will match anything other than ``[0-9_]`` plus characters classified as
    not alphanumeric in the Unicode character properties database.
 
 ``\Z``