From b10033e072e580da258b36ecf87edc8244c0498e Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Sat, 25 Jan 2025 15:50:21 -0300 Subject: [PATCH] Fix ASCII position in description of curses.ascii.rst --- Doc/library/curses.ascii.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/curses.ascii.rst b/Doc/library/curses.ascii.rst index cb895664ff1b11..c1ef39bb318a0f 100644 --- a/Doc/library/curses.ascii.rst +++ b/Doc/library/curses.ascii.rst @@ -133,7 +133,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) @@ -148,7 +148,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.