From c535542d9b33c1269d1c94d903310a9929a8273e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tarjei=20B=C3=A6rland?= Date: Sat, 1 May 2021 00:05:45 +0200 Subject: [PATCH] bpo-43935: Fix typo in Turtle.back() docstring (GH-25581) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 'e ,' to 'e, '. (cherry picked from commit 0048c60f01deec4435748e851f9ec21b504d2d2f) Co-authored-by: Tarjei Bærland --- Lib/turtle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/turtle.py b/Lib/turtle.py index 024fed858f683f2..6e19032cce2a435 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -1645,7 +1645,7 @@ def back(self, distance): 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):