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

Zackery Spytz webhook-mailer at python.org
Thu Aug 27 07:28:20 EDT 2020


https://github.com/python/cpython/commit/398575c210f79627830c5c470184f54ace950ac6
commit: 398575c210f79627830c5c470184f54ace950ac6
branch: master
author: Zackery Spytz <zspytz at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-08-27T16:58:16+05:30
summary:

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

files:
M Doc/library/curses.rst

diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst
index 0b687db1bd2c4..3684d54d4ecad 100644
--- a/Doc/library/curses.rst
+++ b/Doc/library/curses.rst
@@ -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::



More information about the Python-checkins mailing list