From 3b87c109959ff6d5c1f96e49cc234372c4520745 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 28 May 2008 11:51:41 +0000 Subject: fix spelling --- Doc/tutorial/controlflow.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Doc/tutorial') diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 3fac848c57..4fa9858765 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -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: -- cgit v1.2.1