summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-04-30 22:27:48 (GMT)
committerGitHub <noreply@github.com>2021-04-30 22:27:48 (GMT)
commita7f15ba5476051471638957b4d028097d080b290 (patch)
treec6e232044944850a0445cdaea4faf11dae7f58ec
parenta92d7387632de1fc64de51f22f6191acd0c6f5c0 (diff)
downloadcpython-a7f15ba5476051471638957b4d028097d080b290.zip
cpython-a7f15ba5476051471638957b4d028097d080b290.tar.gz
cpython-a7f15ba5476051471638957b4d028097d080b290.tar.bz2
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@gmail.com>
-rw-r--r--Lib/turtle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/turtle.py b/Lib/turtle.py
index 024fed8..6e19032 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):