From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 30 Apr 2021 22:35:45 +0000 (-0700) Subject: bpo-43935: Fix typo in Turtle.back() docstring (GH-25581) X-Git-Tag: v3.8.10~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e377ecf3b496c7719e6dffe3ebf3d0ef512cfb5b;p=thirdparty%2FPython%2Fcpython.git bpo-43935: Fix typo in Turtle.back() docstring (GH-25581) 'e ,' to 'e, '. (cherry picked from commit 0048c60f01deec4435748e851f9ec21b504d2d2f) Co-authored-by: Tarjei Bærland --- diff --git a/Lib/turtle.py b/Lib/turtle.py index 024fed858f68..6e19032cce2a 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -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 distance, opposite to the direction the turtle is headed. Do not change the turtle's heading. Example (for a Turtle instance named turtle):