fix various doc typos #3320
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 @@
    ...     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 @@
    :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: