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

terryjreedy webhook-mailer at python.org
Fri Apr 30 18:35:53 EDT 2021


https://github.com/python/cpython/commit/e377ecf3b496c7719e6dffe3ebf3d0ef512cfb5b
commit: e377ecf3b496c7719e6dffe3ebf3d0ef512cfb5b
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: terryjreedy <tjreedy at udel.edu>
date: 2021-04-30T18:35:45-04: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