diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-07-16 19:48:11 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-07-16 19:48:11 (GMT) |
commit | 2d011e6c2c022c89a63bf0ec454a93fbff6b49b4 (patch) | |
tree | 2d3348227bd8a994a377e779aa15d7202d18b627 | |
parent | af0dce939ce1e402cfd530d925e8f30a755a63ef (diff) | |
download | cpython-2d011e6c2c022c89a63bf0ec454a93fbff6b49b4.zip cpython-2d011e6c2c022c89a63bf0ec454a93fbff6b49b4.tar.gz cpython-2d011e6c2c022c89a63bf0ec454a93fbff6b49b4.tar.bz2 |
Fix a minor typo in the turtle docs. Found by Brandon Passmore on docs@.
-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 f04a07a..01da6a0 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -1859,7 +1859,7 @@ Methods specific to Screen, not inherited from TurtleScreen :param startx: if positive, starting position in pixels from the left edge of the screen, if negative from the right edge, if None, center window horizontally - :param startx: if positive, starting position in pixels from the top + :param starty: if positive, starting position in pixels from the top edge of the screen, if negative from the bottom edge, if None, center window vertically |