diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-05-28 11:51:41 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-05-28 11:51:41 (GMT) |
commit | dee01d8af800b0bb4aac1a9006873b81aace1c5c (patch) | |
tree | 5e3b4a37327f456610bba2f0b6fd7403bc18548a /Doc/tutorial | |
parent | 74a1deaab360e118fa5f4621fd30a4ef4cc5a53e (diff) | |
download | cpython-dee01d8af800b0bb4aac1a9006873b81aace1c5c.zip cpython-dee01d8af800b0bb4aac1a9006873b81aace1c5c.tar.gz cpython-dee01d8af800b0bb4aac1a9006873b81aace1c5c.tar.bz2 |
fix spelling
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/controlflow.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 3fac848..4fa9858 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: |