summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-08-29 22:33:26 (GMT)
committerGitHub <noreply@github.com>2020-08-29 22:33:26 (GMT)
commita1473d2c9106abbdc619bdcc973c15a87e3f0f12 (patch)
treec94fb946048810e81933a82872ff93e2dc9fbe95 /Doc/library
parent838316db08a8e3174e4cf8db233ff69d388b3f5c (diff)
downloadcpython-a1473d2c9106abbdc619bdcc973c15a87e3f0f12.zip
cpython-a1473d2c9106abbdc619bdcc973c15a87e3f0f12.tar.gz
cpython-a1473d2c9106abbdc619bdcc973c15a87e3f0f12.tar.bz2
bpo-41634: Fix a typo in the curses documentation (GH-21958)
(cherry picked from commit 398575c210f79627830c5c470184f54ace950ac6) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/curses.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst
index 957c6f6..7cd2025 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::