]> granicus.if.org Git - python/commitdiff
Fix typo in re.escape documentation (GH-14722)
authorRobert DiPietro <rdipietro@gmail.com>
Sat, 13 Jul 2019 08:35:04 +0000 (04:35 -0400)
committerXiang Zhang <angwerzx@126.com>
Sat, 13 Jul 2019 08:35:04 +0000 (16:35 +0800)
Doc/library/re.rst

index 5ef72b535ce8d46e37d51388b443bf0bb1e2ab5c..158248c3d14794be8ac08375004943e096d764a8 100644 (file)
@@ -942,7 +942,7 @@ form.
       >>> print('|'.join(map(re.escape, sorted(operators, reverse=True))))
       /|\-|\+|\*\*|\*
 
-   This functions must not be used for the replacement string in :func:`sub`
+   This function must not be used for the replacement string in :func:`sub`
    and :func:`subn`, only backslashes should be escaped.  For example::
 
       >>> digits_re = r'\d+'