[Python-checkins] bpo-41634: Fix a typo in the curses documentation (GH-21958)

Miss Islington (bot) webhook-mailer at python.org
Sat Aug 29 18:33:51 EDT 2020


https://github.com/python/cpython/commit/a1473d2c9106abbdc619bdcc973c15a87e3f0f12
commit: a1473d2c9106abbdc619bdcc973c15a87e3f0f12
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-08-29T18:33:26-04:00
summary:

bpo-41634: Fix a typo in the curses documentation (GH-21958)

(cherry picked from commit 398575c210f79627830c5c470184f54ace950ac6)

Co-authored-by: Zackery Spytz <zspytz at gmail.com>

files:
M Doc/library/curses.rst

diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst
index 957c6f60778fe..7cd20253aeea6 100644
--- a/Doc/library/curses.rst
+++ b/Doc/library/curses.rst
@@ -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::



More information about the Python-checkins mailing list