]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Typo fix; constant name is uppercase
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 1 Jun 2009 00:11:36 +0000 (00:11 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 1 Jun 2009 00:11:36 +0000 (00:11 +0000)
Doc/library/re.rst

index 1259b11a28dbbd97f7a2ab2681f25b5f7b19b517..e50a8ddd3d238fca5216ac373e9b7cebf829539e 100644 (file)
@@ -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