diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2009-06-01 00:11:36 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2009-06-01 00:11:36 (GMT) |
commit | 1c50e86d86a156e177878855f32b8cd4b01de719 (patch) | |
tree | a270edb272cff72d2c8706ae5c0587b954d28845 /Doc | |
parent | 751771b0d03e4277c486e66852dc773418a47181 (diff) | |
download | cpython-1c50e86d86a156e177878855f32b8cd4b01de719.zip cpython-1c50e86d86a156e177878855f32b8cd4b01de719.tar.gz cpython-1c50e86d86a156e177878855f32b8cd4b01de719.tar.bz2 |
Typo fix; constant name is uppercase
Diffstat (limited to 'Doc')
-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 1259b11..e50a8dd 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -215,7 +215,7 @@ The special characters are: ``(?aiLmsux)`` (One or more letters from the set ``'a'``, ``'i'``, ``'L'``, ``'m'``, ``'s'``, ``'u'``, ``'x'``.) The group matches the empty string; the - letters set the corresponding flags: :const:`re.a` (ASCII-only matching), + letters set the corresponding flags: :const:`re.A` (ASCII-only matching), :const:`re.I` (ignore case), :const:`re.L` (locale dependent), :const:`re.M` (multi-line), :const:`re.S` (dot matches all), and :const:`re.X` (verbose), for the entire regular expression. (The |