diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-03-15 03:18:48 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-03-15 03:18:48 (GMT) |
commit | 42da663e6fe7ecbb89b17d596c76812a91bb99a4 (patch) | |
tree | f660a093d1eb0841656b9b10173589f357ec0484 /Lib/turtle.py | |
parent | f6db0bbbeefa1bde9fd09c53e7c6bf0e57481590 (diff) | |
download | cpython-42da663e6fe7ecbb89b17d596c76812a91bb99a4.zip cpython-42da663e6fe7ecbb89b17d596c76812a91bb99a4.tar.gz cpython-42da663e6fe7ecbb89b17d596c76812a91bb99a4.tar.bz2 |
#11515: fix several typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Lib/turtle.py')
-rw-r--r-- | Lib/turtle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/turtle.py b/Lib/turtle.py index d8e0094..8146be6 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -1464,7 +1464,7 @@ class TurtleScreen(TurtleScreenBase): Optional argument: picname -- a string, name of a gif-file or "nopic". - If picname is a filename, set the corresponing image as background. + If picname is a filename, set the corresponding image as background. If picname is "nopic", delete backgroundimage, if present. If picname is None, return the filename of the current backgroundimage. @@ -3352,7 +3352,7 @@ class RawTurtle(TPen, TNavigator): def dot(self, size=None, *color): """Draw a dot with diameter size, using color. - Optional argumentS: + Optional arguments: size -- an integer >= 1 (if given) color -- a colorstring or a numeric color tuple |