[Python-checkins] cpython (2.7): Fix a typo caught by Gabriella Capone on docs@

zach.ware python-checkins at python.org
Sun Oct 19 08:08:55 CEST 2014


https://hg.python.org/cpython/rev/4953a4fadb03
changeset:   93133:4953a4fadb03
branch:      2.7
parent:      93128:3ffa43e8ab47
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Sun Oct 19 01:06:58 2014 -0500
summary:
  Fix a typo caught by Gabriella Capone on docs@

files:
  Doc/library/re.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/re.rst b/Doc/library/re.rst
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -393,7 +393,7 @@
    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``

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list