bpo-18699: Corrected documentation for window.chgat in curses module (#1430)
authorChillar Anand <anand21nanda@gmail.com>
Sat, 4 Nov 2017 08:13:16 +0000 (13:43 +0530)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 4 Nov 2017 08:13:16 +0000 (10:13 +0200)
Doc/library/curses.rst

index f2341f4ec833fff0ef1a2859c7d0583d536ba48d..13717f7b35e6b73dc3e2f71e52ced87292e2e5a0 100644 (file)
@@ -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()