diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-11-25 20:54:45 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-11-25 20:54:45 (GMT) |
commit | 72275ef7c322e715210ee24fb3eb72df7c0c0a6d (patch) | |
tree | d2e4fffbe5fb1028dc646b020c5bc9d8dbb07136 | |
parent | 226fa562bff54dec9cd131fdf5950b8aa9a2b3a9 (diff) | |
download | cpython-72275ef7c322e715210ee24fb3eb72df7c0c0a6d.zip cpython-72275ef7c322e715210ee24fb3eb72df7c0c0a6d.tar.gz cpython-72275ef7c322e715210ee24fb3eb72df7c0c0a6d.tar.bz2 |
remove incorrect plural
-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 182b054..db7e1cf 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -366,7 +366,7 @@ the second character. For example, ``\$`` matches the character ``'$'``. database. ``\S`` - When the :const:`UNICODE` flags is not specified, matches any non-whitespace + When the :const:`UNICODE` flag is not specified, matches any non-whitespace character; this is equivalent to the set ``[^ \t\n\r\f\v]`` The :const:`LOCALE` flag has no extra effect on non-whitespace match. If :const:`UNICODE` is set, then any character not marked as space in the |