diff options
author | Chillar Anand <anand21nanda@gmail.com> | 2017-11-04 08:13:16 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-11-04 08:13:16 (GMT) |
commit | b838cc3ff4e039af949c6a19bd896e98e944dcbe (patch) | |
tree | 172a8cd7dd16dbc44a5a01d3734fa1f17ba07b05 | |
parent | ee1a9a2b78d5b6bb1a8148fc5fcf365e6d4e9e67 (diff) | |
download | cpython-b838cc3ff4e039af949c6a19bd896e98e944dcbe.zip cpython-b838cc3ff4e039af949c6a19bd896e98e944dcbe.tar.gz cpython-b838cc3ff4e039af949c6a19bd896e98e944dcbe.tar.bz2 |
bpo-18699: Corrected documentation for window.chgat in curses module (#1430)
-rw-r--r-- | Doc/library/curses.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index f2341f4..13717f7 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -788,10 +788,10 @@ the following methods and attributes: Set the attributes of *num* characters at the current cursor position, or at position ``(y, x)`` if supplied. If *num* is not given or is ``-1``, - the attribute will be set on all the characters to the end of the line. This - function does not move the cursor. The changed line will be touched using the - :meth:`touchline` method so that the contents will be redisplayed by the next - window refresh. + the attribute will be set on all the characters to the end of the line. This + function moves cursor to position ``(y, x)`` if supplied. The changed line + will be touched using the :meth:`touchline` method so that the contents will + be redisplayed by the next window refresh. .. method:: window.clear() |