]> granicus.if.org Git - python/commitdiff
Fix docstring punctuation
authorAndrew M. Kuchling <amk@amk.ca>
Sat, 29 Jul 2006 14:43:55 +0000 (14:43 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Sat, 29 Jul 2006 14:43:55 +0000 (14:43 +0000)
Lib/lib-tk/turtle.py

index 4b90c616b1bc55e3becac7568f9603f4281c4e5e..01a55b1522df23b89de8c31d5c738fb2caaf98e2 100644 (file)
@@ -713,7 +713,7 @@ for methodname in dir(RawPen):
 def setup(**geometry):
     """ Sets the size and position of the main window.
 
-    Keywords are width, height, startx and starty
+    Keywords are width, height, startx and starty:
 
     width: either a size in pixels or a fraction of the screen.
       Default is 50% of screen.
@@ -788,7 +788,7 @@ def setup(**geometry):
         _root.geometry("%dx%d+%d+%d" % (_width, _height, _startx, _starty))
 
 def title(title):
-    """ set the window title.
+    """Set the window title.
 
     By default this is set to 'Turtle Graphics'