diff options
author | Jules Lasne <jules.lasne@gmail.com> | 2021-01-29 18:46:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 09:46:39 -0800 |
commit | 6372a4ceba126aa0a9f00eee0f8023308f13e77b (patch) | |
tree | 50ee6921968d975e9397c414fa257943aa8e7c45 | |
parent | bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356) (diff) | |
download | cpython-6372a4ceba126aa0a9f00eee0f8023308f13e77b.tar.gz cpython-6372a4ceba126aa0a9f00eee0f8023308f13e77b.tar.bz2 cpython-6372a4ceba126aa0a9f00eee0f8023308f13e77b.zip |
Fixed typo in turtle.rst (GH-24371)
Found it while translating it to french 🤷
Automerge-Triggered-By: GH:JulienPalard
-rw-r--r-- | Doc/library/turtle.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 2084d75b3a5..7bd7e966109 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -662,7 +662,7 @@ Tell Turtle's state Return the angle between the line from turtle position to position specified by (x,y), the vector or the other turtle. This depends on the turtle's start - orientation which depends on the mode - "standard"/"world" or "logo"). + orientation which depends on the mode - "standard"/"world" or "logo". .. doctest:: :skipif: _tkinter is None |