diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-07-16 19:48:48 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-07-16 19:48:48 (GMT) |
commit | 8faecbfb425747130061e89eb619cb6dcdfa1c49 (patch) | |
tree | 272355448eaeb69f026f1365883794e0f561948d | |
parent | 2b0a6102974bdcacf8b8c4d964d3f7379878100a (diff) | |
download | cpython-8faecbfb425747130061e89eb619cb6dcdfa1c49.zip cpython-8faecbfb425747130061e89eb619cb6dcdfa1c49.tar.gz cpython-8faecbfb425747130061e89eb619cb6dcdfa1c49.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 b015530..9e70b40 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -1981,7 +1981,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 |