diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-05-28 11:51:41 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-05-28 11:51:41 +0000 |
commit | 3b87c109959ff6d5c1f96e49cc234372c4520745 (patch) | |
tree | cb61b7f069b7a69c7e416a9fb5bf18cf0922aa18 /Doc/tutorial | |
parent | 4483431be07dd4a1c9ef9a26dcf2f1c8a7f87d4f (diff) | |
download | cpython-3b87c109959ff6d5c1f96e49cc234372c4520745.tar.gz |
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 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: |