summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-07-30 18:31:22 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-07-30 18:31:22 (GMT)
commit4cfdb077fd45a5b017803e9429388f51a7536a2b (patch)
tree29f8d5dc39c7788dc471a48097ff75514ea65e36 /Doc/reference
parent110b7811290d1de42399996c108a98b871436642 (diff)
downloadcpython-4cfdb077fd45a5b017803e9429388f51a7536a2b.zip
cpython-4cfdb077fd45a5b017803e9429388f51a7536a2b.tar.gz
cpython-4cfdb077fd45a5b017803e9429388f51a7536a2b.tar.bz2
#12531: Fix spaces.
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/expressions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index b54bfd0..e2cc80d 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -741,7 +741,7 @@ there were no excess keyword arguments.
If the syntax ``*expression`` appears in the function call, ``expression`` must
evaluate to an iterable. Elements from this iterable are treated as if they
were additional positional arguments; if there are positional arguments
-*x1*,...,*xN*, and ``expression`` evaluates to a sequence *y1*, ..., *yM*, this
+*x1*, ..., *xN*, and ``expression`` evaluates to a sequence *y1*, ..., *yM*, this
is equivalent to a call with M+N positional arguments *x1*, ..., *xN*, *y1*,
..., *yM*.