diff options
author | Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com> | 2018-11-16 13:28:51 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-11-16 13:28:51 (GMT) |
commit | 4edeaeac4c194ba5d09187640b5cfca5e03be617 (patch) | |
tree | d6707b7eae1a7d764fae1564e43592781ffb71c0 /Doc/library/turtle.rst | |
parent | a48e0eb9673ec96d1decb8a230331533cfb6138b (diff) | |
download | cpython-4edeaeac4c194ba5d09187640b5cfca5e03be617.zip cpython-4edeaeac4c194ba5d09187640b5cfca5e03be617.tar.gz cpython-4edeaeac4c194ba5d09187640b5cfca5e03be617.tar.bz2 |
bpo-35250: Correct argument name "num" -> "btn" in turtle docs. (GH-10565)
Diffstat (limited to 'Doc/library/turtle.rst')
-rw-r--r-- | Doc/library/turtle.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 8390364..3d90d3c 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -1360,7 +1360,7 @@ Using events :param fun: a function with two arguments which will be called with the coordinates of the clicked point on the canvas - :param num: number of the mouse-button, defaults to 1 (left mouse button) + :param btn: number of the mouse-button, defaults to 1 (left mouse button) :param add: ``True`` or ``False`` -- if ``True``, a new binding will be added, otherwise it will replace a former binding @@ -1382,7 +1382,7 @@ Using events :param fun: a function with two arguments which will be called with the coordinates of the clicked point on the canvas - :param num: number of the mouse-button, defaults to 1 (left mouse button) + :param btn: number of the mouse-button, defaults to 1 (left mouse button) :param add: ``True`` or ``False`` -- if ``True``, a new binding will be added, otherwise it will replace a former binding @@ -1407,7 +1407,7 @@ Using events :param fun: a function with two arguments which will be called with the coordinates of the clicked point on the canvas - :param num: number of the mouse-button, defaults to 1 (left mouse button) + :param btn: number of the mouse-button, defaults to 1 (left mouse button) :param add: ``True`` or ``False`` -- if ``True``, a new binding will be added, otherwise it will replace a former binding @@ -1805,7 +1805,7 @@ Using screen events :param fun: a function with two arguments which will be called with the coordinates of the clicked point on the canvas - :param num: number of the mouse-button, defaults to 1 (left mouse button) + :param btn: number of the mouse-button, defaults to 1 (left mouse button) :param add: ``True`` or ``False`` -- if ``True``, a new binding will be added, otherwise it will replace a former binding |