diff options
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 c407ad433d..bf6fbe21a7 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -572,8 +572,8 @@ or tuple:: .. index:: single: **; in function calls -In the same fashion, dictionaries can deliver keyword arguments with the ``**``\ --operator:: +In the same fashion, dictionaries can deliver keyword arguments with the +``**``\ -operator:: >>> def parrot(voltage, state='a stiff', action='voom'): ... print("-- This parrot wouldn't", action, end=' ') |