mirror of https://github.com/python/cpython.git
bpo-43935: Fix typo in Turtle.back() docstring (GH-25581)
'e ,' to 'e, '.
This commit is contained in:
parent
726c931b38
commit
0048c60f01
|
@ -1645,7 +1645,7 @@ def back(self, distance):
|
||||||
Argument:
|
Argument:
|
||||||
distance -- a number
|
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.
|
turtle is headed. Do not change the turtle's heading.
|
||||||
|
|
||||||
Example (for a Turtle instance named turtle):
|
Example (for a Turtle instance named turtle):
|
||||||
|
|
Loading…
Reference in New Issue