[Python-checkins] r63758 - python/trunk/Doc/tutorial/controlflow.rst

benjamin.peterson python-checkins at python.org
Wed May 28 13:51:41 CEST 2008


Author: benjamin.peterson
Date: Wed May 28 13:51:41 2008
New Revision: 63758

Log:
fix spelling


Modified:
   python/trunk/Doc/tutorial/controlflow.rst

Modified: python/trunk/Doc/tutorial/controlflow.rst
==============================================================================
--- python/trunk/Doc/tutorial/controlflow.rst	(original)
+++ python/trunk/Doc/tutorial/controlflow.rst	Wed May 28 13:51:41 2008
@@ -445,8 +445,8 @@
 up in a tuple.  Before the variable number of arguments, zero or more normal
 arguments may occur. ::
 
-   def write_multiple_items(file, seperator, *args):
-       file.write(seperator.join(args))
+   def write_multiple_items(file, separator, *args):
+       file.write(separator.join(args))
 
 
 .. _tut-unpacking-arguments:


More information about the Python-checkins mailing list