[Python-checkins] bpo-43935: Fix typo in Turtle.back() docstring (GH-25581)

miss-islington webhook-mailer at python.org
Fri Apr 30 18:27:58 EDT 2021


https://github.com/python/cpython/commit/a7f15ba5476051471638957b4d028097d080b290
commit: a7f15ba5476051471638957b4d028097d080b290
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-04-30T15:27:48-07:00
summary:

bpo-43935: Fix typo in Turtle.back() docstring (GH-25581)


'e ,' to 'e, '.
(cherry picked from commit 0048c60f01deec4435748e851f9ec21b504d2d2f)

Co-authored-by: Tarjei Bærland <tarjeibaerland at gmail.com>

files:
M Lib/turtle.py

diff --git a/Lib/turtle.py b/Lib/turtle.py
index 024fed858f683f..6e19032cce2a43 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):



More information about the Python-checkins mailing list