diff options
author | Zackery Spytz <zspytz@gmail.com> | 2020-08-27 05:28:16 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-27 16:58:16 +0530 |
commit | 398575c210f79627830c5c470184f54ace950ac6 (patch) | |
tree | 69c4e9de22e9d54d0f68843bff4171e92c590592 | |
parent | 97eaf2b5e5c826b9abe59896a363853bef55c5d9 (diff) | |
download | cpython-git-398575c210f79627830c5c470184f54ace950ac6.tar.gz |
bpo-41634: Fix a typo in the curses documentation (GH-21958)
-rw-r--r-- | Doc/library/curses.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index 0b687db1bd..3684d54d4e 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:: |