diff options
Diffstat (limited to 'Doc/library/turtle.rst')
-rw-r--r-- | Doc/library/turtle.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 9a6d49f..7b8ced7 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -1275,7 +1275,7 @@ Window control ... left(10) ... >>> for _ in range(8): - ... left(45); fd(2) # a regular octogon + ... left(45); fd(2) # a regular octagon Animation control @@ -1286,7 +1286,7 @@ Animation control :param delay: positive integer Set or return the drawing *delay* in milliseconds. (This is approximately - the time interval between two consecutived canvas updates.) The longer the + the time interval between two consecutive canvas updates.) The longer the drawing delay, the slower the animation. Optional argument: |