]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43935: Fix typo in Turtle.back() docstring (GH-25581)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 30 Apr 2021 22:35:45 +0000 (15:35 -0700)
committerGitHub <noreply@github.com>
Fri, 30 Apr 2021 22:35:45 +0000 (18:35 -0400)
'e ,' to 'e, '.
(cherry picked from commit 0048c60f01deec4435748e851f9ec21b504d2d2f)

Co-authored-by: Tarjei Bærland <tarjeibaerland@gmail.com>
Lib/turtle.py

index 024fed858f683f25f9534a475a9484e1b0198167..6e19032cce2a43598ee35ff8d7f00f3dc13ad700 100644 (file)
@@ -1645,7 +1645,7 @@ class TNavigator(object):
         Argument:
         distance -- a number
 
-        Move the turtle backward by distance ,opposite to the direction the
+        Move the turtle backward by distanceopposite to the direction the
         turtle is headed. Do not change the turtle's heading.
 
         Example (for a Turtle instance named turtle):