aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-01-29 14:03:18 -0800
committerGitHub <noreply@github.com>2021-01-29 14:03:18 -0800
commitd34be1ed57bf99298f1b7f9d7259d25019a29cb2 (patch)
tree1951fff7313969d46b1f235d8f935594464aacb9
parentFixed typo in turtle.rst (GH-24371) (diff)
downloadcpython-d34be1ed57bf99298f1b7f9d7259d25019a29cb2.tar.gz
cpython-d34be1ed57bf99298f1b7f9d7259d25019a29cb2.tar.bz2
cpython-d34be1ed57bf99298f1b7f9d7259d25019a29cb2.zip
Fixing typos in turtle.rst (GH-24376)
Automerge-Triggered-By: GH:JulienPalard (cherry picked from commit 6baaae589d596ed3bb668448f2a22c5f62fc5fdf) Co-authored-by: Jules Lasne <jules.lasne@gmail.com>
-rw-r--r--Doc/library/turtle.rst12
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``