From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 29 Aug 2020 22:33:26 +0000 (-0700) Subject: bpo-41634: Fix a typo in the curses documentation (GH-21958) X-Git-Tag: v3.8.6rc1~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a1473d2c9106abbdc619bdcc973c15a87e3f0f12;p=thirdparty%2FPython%2Fcpython.git bpo-41634: Fix a typo in the curses documentation (GH-21958) (cherry picked from commit 398575c210f79627830c5c470184f54ace950ac6) Co-authored-by: Zackery Spytz --- diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index 957c6f60778f..7cd20253aeea 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::