From: Zackery Spytz Date: Thu, 27 Aug 2020 11:28:16 +0000 (-0600) Subject: bpo-41634: Fix a typo in the curses documentation (GH-21958) X-Git-Tag: v3.10.0a1~218 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=398575c210f79627830c5c470184f54ace950ac6;p=thirdparty%2FPython%2Fcpython.git bpo-41634: Fix a typo in the curses documentation (GH-21958) --- diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index 0b687db1bd2c..3684d54d4eca 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::