]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-41634: Fix a typo in the curses documentation (GH-21958)
authorZackery Spytz <zspytz@gmail.com>
Thu, 27 Aug 2020 11:28:16 +0000 (05:28 -0600)
committerGitHub <noreply@github.com>
Thu, 27 Aug 2020 11:28:16 +0000 (16:58 +0530)
Doc/library/curses.rst

index 0b687db1bd2c4dbe609617cd084a63f04a922ff2..3684d54d4ecadece5b54c4434af056de36bb6dc7 100644 (file)
@@ -717,7 +717,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::