]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-41634: Fix a typo in the curses documentation (GH-21958)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 29 Aug 2020 22:33:26 +0000 (15:33 -0700)
committerGitHub <noreply@github.com>
Sat, 29 Aug 2020 22:33:26 +0000 (18:33 -0400)
(cherry picked from commit 398575c210f79627830c5c470184f54ace950ac6)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Doc/library/curses.rst

index 957c6f60778fea48f0224c78457459cf8a291b0d..7cd20253aeea6a36afa8757ce60e697943128e8b 100644 (file)
@@ -682,7 +682,7 @@ the following methods and attributes:
             window.addch(y, x, ch[, attr])
 
    Paint character *ch* at ``(y, x)`` with attributes *attr*, overwriting any
-   character previously painter at that location.  By default, the character
+   character previously painted at that location.  By default, the character
    position and attributes are the current settings for the window object.
 
    .. note::