diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-07-29 18:44:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-29 18:44:50 (GMT) |
commit | 038827d0f59076f52e9797018ead12b1295cddc2 (patch) | |
tree | 4845011d104710b19ddad0e77114e438dd52f490 | |
parent | b7722ed0f39120c66186aae0f63a82fdff93c55d (diff) | |
download | cpython-038827d0f59076f52e9797018ead12b1295cddc2.zip cpython-038827d0f59076f52e9797018ead12b1295cddc2.tar.gz cpython-038827d0f59076f52e9797018ead12b1295cddc2.tar.bz2 |
bpo-41426 Fix grammar in curses.getmouse() documentation (GH-21677)
Automerge-Triggered-By: @brettcannon
(cherry picked from commit ba18c0b13ba3c08077ea3db6658328523823a33f)
Co-authored-by: Sebastien Williams-Wynn <s.williamswynn.mail@gmail.com>
-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 cbd6883..957c6f6 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -214,7 +214,7 @@ The module :mod:`curses` defines the following functions: .. function:: getmouse() After :meth:`~window.getch` returns :const:`KEY_MOUSE` to signal a mouse event, this - method should be call to retrieve the queued mouse event, represented as a + method should be called to retrieve the queued mouse event, represented as a 5-tuple ``(id, x, y, z, bstate)``. *id* is an ID value used to distinguish multiple devices, and *x*, *y*, *z* are the event's coordinates. (*z* is currently unused.) *bstate* is an integer value whose bits will be set to |