From 5ced4afabb1ccbcb6c1a57ce00aec34baf172cd4 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Tue, 25 Aug 2020 23:01:14 -0600 Subject: [PATCH] bpo-41634: Fix a typo in the curses documentation --- 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 0b687db1bd2c4db..3684d54d4ecadec 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::