8000 gh-106996: Rewrite turtle explanation by evildmp · Pull Request #107244 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-106996: Rewrite turtle explanation #107244

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Jul 27, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix indentation error in turtle documentation
  • Loading branch information
evildmp committed Jul 24, 2023
commit 1c5a00c2d72d1c9753cb6071ca303bba47017aef
2 changes: 1 addition & 1 deletion Doc/library/turtle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ You should see (most likely, in a new window on your display) a line
drawn by the turtle, heading East. Change the direction of the turtle,
so that it turns 120 degrees left (anti-clockwise)::

left(120)
left(120)

Let's continue by drawing a triangle::

Expand Down
0