]> granicus.if.org Git - python/commitdiff
Fix copy/paste error in bytes.isupper() doc.
authorZachary Ware <zachary.ware@gmail.com>
Fri, 27 Feb 2015 07:40:22 +0000 (01:40 -0600)
committerZachary Ware <zachary.ware@gmail.com>
Fri, 27 Feb 2015 07:40:22 +0000 (01:40 -0600)
Reported by Jon Colburn on docs@.

Doc/library/stdtypes.rst

index e0f8cfaf9e7299decf94c8ab6d329a7b3276cc6b..d3fc0939530683fb97d70efd8f6961a582418e73 100644 (file)
@@ -2880,8 +2880,8 @@ place, and instead produce new objects.
 .. method:: bytes.isupper()
             bytearray.isupper()
 
-   Return true if there is at least one lowercase alphabetic ASCII character
-   in the sequence and no uppercase ASCII characters, false otherwise.
+   Return true if there is at least one uppercase alphabetic ASCII character
+   in the sequence and no lowercase ASCII characters, false otherwise.
 
    For example::