diff options
Diffstat (limited to 'Doc/reference/expressions.rst')
-rw-r--r-- | Doc/reference/expressions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index c3c3e06..036f4f1 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -728,7 +728,7 @@ A consequence of this is that although the ``*expression`` syntax may appear (and the ``**expression`` argument, if any -- see below). So:: >>> def f(a, b): - ... print(a, b) + ... print(a, b) ... >>> f(b=1, *(2,)) 2 1 |