diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-13 01:49:10 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-13 01:49:10 (GMT) |
commit | 5a0c86404548efa75a3e182f016efb0742b18e16 (patch) | |
tree | 52d451dda1844b416b058b2f9e41094c355c0de1 /Doc/library | |
parent | aaa6e630f8440c7a29621863df35fb4c427e5968 (diff) | |
download | cpython-5a0c86404548efa75a3e182f016efb0742b18e16.zip cpython-5a0c86404548efa75a3e182f016efb0742b18e16.tar.gz cpython-5a0c86404548efa75a3e182f016efb0742b18e16.tar.bz2 |
small logic correction
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/turtle.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 3155d87..787a1b8 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -325,8 +325,7 @@ Turtle motion :param y: a number (integer or float) - Set the turtle's first coordinate to *y*, leave second coordinate - unchanged. + Set the turtle's second coordinate to *y*, leave second coordinate unchanged. >>> turtle.position() (0.00, 40.00) |