Fix wrong signature for two-argument newwin(). Found by Jacqueline Leykam on docs@.

This commit is contained in:
Georg Brandl 2013-10-29 08:10:36 +01:00
parent ad3215362c
commit 1ed80b09ed
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ The module :mod:`curses` defines the following functions:
is to be displayed.
.. function:: newwin(begin_y, begin_x)
.. function:: newwin(nlines, ncols)
newwin(nlines, ncols, begin_y, begin_x)
Return a new window, whose left-upper corner is at ``(begin_y, begin_x)``, and