diff options
author | Jules Lasne <jules.lasne@gmail.com> | 2021-01-29 22:40:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 13:40:45 -0800 |
commit | 6baaae589d596ed3bb668448f2a22c5f62fc5fdf (patch) | |
tree | a0eb374a70cddcee4a04406571e17dab6018226c /Doc | |
parent | bpo-43008: Add 'Patch by Ken Hilton' (GH-24370) (diff) | |
download | cpython-6baaae589d596ed3bb668448f2a22c5f62fc5fdf.tar.gz cpython-6baaae589d596ed3bb668448f2a22c5f62fc5fdf.tar.bz2 cpython-6baaae589d596ed3bb668448f2a22c5f62fc5fdf.zip |
Fixing typos in turtle.rst (GH-24376)
Automerge-Triggered-By: GH:JulienPalard
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/turtle.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 7bd7e966109..6a9d61916ad 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -1105,7 +1105,7 @@ More drawing control :param font: a triple (fontname, fontsize, fonttype) Write text - the string representation of *arg* - at the current turtle - position according to *align* ("left", "center" or right") and with the given + position according to *align* ("left", "center" or "right") and with the given font. If *move* is true, the pen is moved to the bottom-right corner of the text. By default, *move* is ``False``. @@ -1192,7 +1192,7 @@ Appearance :func:`shapesize`. - "noresize": no adaption of the turtle's appearance takes place. - resizemode("user") is called by :func:`shapesize` when used with arguments. + ``resizemode("user")`` is called by :func:`shapesize` when used with arguments. .. doctest:: :skipif: _tkinter is None @@ -1330,7 +1330,7 @@ Appearance matrix as a tuple of 4 elements. Otherwise set the given elements and transform the turtleshape according to the matrix consisting of first row t11, t12 and - second row t21, 22. The determinant t11 * t22 - t12 * t21 must not be + second row t21, t22. The determinant t11 * t22 - t12 * t21 must not be zero, otherwise an error is raised. Modify stretchfactor, shearfactor and tiltangle according to the given matrix. @@ -1513,7 +1513,7 @@ Special Turtle methods :param size: an integer or ``None`` - Set or disable undobuffer. If *size* is an integer an empty undobuffer of + Set or disable undobuffer. If *size* is an integer, an empty undobuffer of given size is installed. *size* gives the maximum number of turtle actions that can be undone by the :func:`undo` method/function. If *size* is ``None``, the undobuffer is disabled. @@ -1821,7 +1821,7 @@ Using screen events existing bindings are removed. Example for a TurtleScreen instance named ``screen`` and a Turtle instance - named turtle: + named ``turtle``: .. doctest:: :skipif: _tkinter is None @@ -2048,7 +2048,7 @@ Methods specific to Screen, not inherited from TurtleScreen .. function:: exitonclick() - Bind bye() method to mouse clicks on the Screen. + Bind ``bye()`` method to mouse clicks on the Screen. If the value "using_IDLE" in the configuration dictionary is ``False`` |