diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-10-19 06:06:58 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-10-19 06:06:58 (GMT) |
commit | 7ca2a9008d11e2ccc4158b48e0435066526f2e84 (patch) | |
tree | 65b63588b695a9663d617a76c9c3c57ce2585d63 | |
parent | 0daddbdb7a13ffa59b6fa83efcb625065d04ef94 (diff) | |
download | cpython-7ca2a9008d11e2ccc4158b48e0435066526f2e84.zip cpython-7ca2a9008d11e2ccc4158b48e0435066526f2e84.tar.gz cpython-7ca2a9008d11e2ccc4158b48e0435066526f2e84.tar.bz2 |
Fix a typo caught by Gabriella Capone on docs@
-rw-r--r-- | Doc/library/re.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst index e5bbd03..2910d36 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -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`` |