]> granicus.if.org Git - python/commitdiff
fix spelling
authorBenjamin Peterson <benjamin@python.org>
Wed, 28 May 2008 11:51:41 +0000 (11:51 +0000)
committerBenjamin Peterson <benjamin@python.org>
Wed, 28 May 2008 11:51:41 +0000 (11:51 +0000)
Doc/tutorial/controlflow.rst

index 3fac848c57f9379d58fc99a9dbfd5c30ea88a4e3..4fa9858765d098624b43ca977796574e571632ac 100644 (file)
@@ -445,8 +445,8 @@ called with an arbitrary number of arguments.  These arguments will be wrapped
 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: