]> granicus.if.org Git - python/commitdiff
bpo-33952: Fix typo in str.upper() documentation (GH-7898)
authorAndrés Delfino <adelfino@gmail.com>
Mon, 25 Jun 2018 10:34:22 +0000 (07:34 -0300)
committerTal Einat <taleinat+github@gmail.com>
Mon, 25 Jun 2018 10:34:22 +0000 (13:34 +0300)
Doc/library/stdtypes.rst

index ba886f1da2bda6cb84450b26f56bcf49165a7cca..1211ece6ad648065fcc08aea497d16e51246060d 100644 (file)
@@ -2051,7 +2051,7 @@ expression support in the :mod:`re` module).
 .. method:: str.upper()
 
    Return a copy of the string with all the cased characters [4]_ converted to
-   uppercase.  Note that ``str.upper().isupper()`` might be ``False`` if ``s``
+   uppercase.  Note that ``s.upper().isupper()`` might be ``False`` if ``s``
    contains uncased characters or if the Unicode category of the resulting
    character(s) is not "Lu" (Letter, uppercase), but e.g. "Lt" (Letter,
    titlecase).