]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typos in the `curses.ascii` module documentation (#129300)
authorRafael Fontenelle <rffontenelle@users.noreply.github.com>
Fri, 12 Jun 2026 16:02:33 +0000 (13:02 -0300)
committerGitHub <noreply@github.com>
Fri, 12 Jun 2026 16:02:33 +0000 (16:02 +0000)
Co-authored-by: Stan Ulbrych <stan@python.org>
Doc/library/curses.ascii.rst

index 9ae82c1446553831b3afe7eff90db0743fc4e566..8f8e3ddda8ef52a2935e8197bdbd0d93c05ad044 100644 (file)
@@ -130,7 +130,7 @@ C library:
 
 .. function:: isgraph(c)
 
-   Checks for ASCII any printable character except space.
+   Checks for any ASCII printable character except space.
 
 
 .. function:: islower(c)
@@ -145,7 +145,7 @@ C library:
 
 .. function:: ispunct(c)
 
-   Checks for any printable ASCII character which is not a space or an alphanumeric
+   Checks for any ASCII printable character which is not a space or an alphanumeric
    character.