]> 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:48 +0000 (15:33 -0700)
committerGitHub <noreply@github.com>
Sat, 29 Aug 2020 22:33:48 +0000 (18:33 -0400)
(cherry picked from commit 398575c210f79627830c5c470184f54ace950ac6)

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

index c86ca5d9bc5541e27e2f93166619fa81fe8c2c4e..7a13295f482eeb0e4bda74fa18f67c77c33b1075 100644 (file)
@@ -708,7 +708,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::