mirror of
https://github.com/python/cpython.git
synced 2025-07-30 06:34:15 +00:00
fix spelling
This commit is contained in:
parent
74a1deaab3
commit
dee01d8af8
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue