diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-14 21:23:09 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-14 21:23:09 (GMT) |
commit | 5c9914899bb220eefceb4fad685694bbc04a905c (patch) | |
tree | 18c94e6193aed04c6cd76e270ffd9969be508da8 | |
parent | eb6e0f583db5d928e475d11b1fa28a679123a749 (diff) | |
download | cpython-5c9914899bb220eefceb4fad685694bbc04a905c.zip cpython-5c9914899bb220eefceb4fad685694bbc04a905c.tar.gz cpython-5c9914899bb220eefceb4fad685694bbc04a905c.tar.bz2 |
tupel -> tuple
-rw-r--r-- | Doc/library/turtle.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 9707420..bf567a2 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -1244,9 +1244,9 @@ Window control .. function:: screensize(canvwidth=None, canvheight=None, bg=None) - :param canvwidth: positive integer, new width of canvas in pixels - :param canvheight: positive integer, new height of canvas in pixels - :param bg: colorstring or color-tupel, new background color + :param canvwidth: positive integer, new width of canvas in pixels :param + canvheight: positive integer, new height of canvas in pixels :param bg: + colorstring or color-tuple, new background color If no arguments are given, return current (canvaswidth, canvasheight). Else resize the canvas the turtles are drawing on. Do not alter the drawing |