diff options
author | Tarjei Bærland <tarjeibaerland@gmail.com> | 2021-04-30 22:05:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-30 22:05:45 (GMT) |
commit | 0048c60f01deec4435748e851f9ec21b504d2d2f (patch) | |
tree | 0b275b4e5283f4b8cf43aa22d627d4f8deb7803d /Lib/turtle.py | |
parent | 726c931b3896dc73fd156e2340b5ef0b8f55cfb7 (diff) | |
download | cpython-0048c60f01deec4435748e851f9ec21b504d2d2f.zip cpython-0048c60f01deec4435748e851f9ec21b504d2d2f.tar.gz cpython-0048c60f01deec4435748e851f9ec21b504d2d2f.tar.bz2 |
bpo-43935: Fix typo in Turtle.back() docstring (GH-25581)
'e ,' to 'e, '.
Diffstat (limited to 'Lib/turtle.py')
-rw-r--r-- | Lib/turtle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/turtle.py b/Lib/turtle.py index 08c5b47..7d94720 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): |