[Python-checkins] bpo-41426 Fix grammar in curses.getmouse() documentation (GH-21677)

Miss Islington (bot) webhook-mailer at python.org
Wed Jul 29 14:44:57 EDT 2020


https://github.com/python/cpython/commit/038827d0f59076f52e9797018ead12b1295cddc2
commit: 038827d0f59076f52e9797018ead12b1295cddc2
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-07-29T11:44:50-07:00
summary:

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 at gmail.com>

files:
M Doc/library/curses.rst

diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst
index cbd68834b6cbe..957c6f60778fe 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



More information about the Python-checkins mailing list