Skip to content
This repository was archived by the owner on Nov 17, 2020. It is now read-only.

Commit 87a5fe8

Browse files
author
benjamin.peterson
committed
fix spelling
git-svn-id: http://svn.python.org/projects/python/trunk@63758 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 3186396 commit 87a5fe8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/tutorial/controlflow.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,8 +445,8 @@ called with an arbitrary number of arguments. These arguments will be wrapped
445445
up in a tuple. Before the variable number of arguments, zero or more normal
446446
arguments may occur. ::
447447

448-
def write_multiple_items(file, seperator, *args):
449-
file.write(seperator.join(args))
448+
def write_multiple_items(file, separator, *args):
449+
file.write(separator.join(args))
450450

451451

452452
.. _tut-unpacking-arguments:

0 commit comments

Comments
 (0)