From 7eeb8fff603589f46c68c3a8b26ece8df3c67772 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Thu, 27 Aug 2020 05:28:16 -0600 Subject: [PATCH] bpo-41634: Fix a typo in the curses documentation (GH-21958) (cherry picked from commit 398575c210f79627830c5c470184f54ace950ac6) Co-authored-by: Zackery Spytz --- Doc/library/curses.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index c86ca5d9bc5541..7a13295f482eeb 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -708,7 +708,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::