summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2011-08-07 15:09:15 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2011-08-07 15:09:15 (GMT)
commit1381a31e39ceb775585cacbd5e7f43e91a162786 (patch)
treee643a024d0fe82495b34ac2072987706598445e9
parentef651ac162e131c80310ad3db3c4634a01949904 (diff)
downloadcpython-1381a31e39ceb775585cacbd5e7f43e91a162786.zip
cpython-1381a31e39ceb775585cacbd5e7f43e91a162786.tar.gz
cpython-1381a31e39ceb775585cacbd5e7f43e91a162786.tar.bz2
#12677: correct turtle orientation in doc
-rw-r--r--Demo/turtle/about_turtle.txt4
-rw-r--r--Doc/library/turtle.rst4
-rw-r--r--Lib/lib-tk/turtle.py4
3 files changed, 6 insertions, 6 deletions
diff --git a/Demo/turtle/about_turtle.txt b/Demo/turtle/about_turtle.txt
index a42800b..4d290be 100644
--- a/Demo/turtle/about_turtle.txt
+++ b/Demo/turtle/about_turtle.txt
@@ -7,10 +7,10 @@ Turtle graphics is a popular way for introducing programming to
kids. It was part of the original Logo programming language developed
by Wally Feurzig and Seymour Papert in 1966.
-Imagine a robotic turtle starting at (0, 0) in the x-y plane. Give it
+Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an ``import turtle``, give it
the command turtle.forward(15), and it moves (on-screen!) 15 pixels in
the direction it is facing, drawing a line as it moves. Give it the
-command turtle.left(25), and it rotates in-place 25 degrees clockwise.
+command turtle.right(25), and it rotates in-place 25 degrees clockwise.
By combining together these and similar commands, intricate shapes and
pictures can easily be drawn.
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst
index 129ec0e..98c07ca 100644
--- a/Doc/library/turtle.rst
+++ b/Doc/library/turtle.rst
@@ -18,10 +18,10 @@ Turtle graphics is a popular way for introducing programming to kids. It was
part of the original Logo programming language developed by Wally Feurzig and
Seymour Papert in 1966.
-Imagine a robotic turtle starting at (0, 0) in the x-y plane. Give it the
+Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an ``import turtle``, give it the
command ``turtle.forward(15)``, and it moves (on-screen!) 15 pixels in the
direction it is facing, drawing a line as it moves. Give it the command
-``turtle.left(25)``, and it rotates in-place 25 degrees clockwise.
+``turtle.right(25)``, and it rotates in-place 25 degrees clockwise.
By combining together these and similar commands, intricate shapes and pictures
can easily be drawn.
diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py
index a003433..4230d68 100644
--- a/Lib/lib-tk/turtle.py
+++ b/Lib/lib-tk/turtle.py
@@ -27,10 +27,10 @@ Turtle graphics is a popular way for introducing programming to
kids. It was part of the original Logo programming language developed
by Wally Feurzig and Seymour Papert in 1966.
-Imagine a robotic turtle starting at (0, 0) in the x-y plane. Give it
+Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an ``import turtle``, give it
the command turtle.forward(15), and it moves (on-screen!) 15 pixels in
the direction it is facing, drawing a line as it moves. Give it the
-command turtle.left(25), and it rotates in-place 25 degrees clockwise.
+command turtle.right(25), and it rotates in-place 25 degrees clockwise.
By combining together these and similar commands, intricate shapes and
pictures can easily be drawn.