summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
authorAndre Delfino <adelfino@gmail.com>2019-03-27 01:17:50 (GMT)
committerÉric Araujo <merwok@netwok.org>2019-03-27 01:17:50 (GMT)
commitdfd775a0b1aee51d842b20cdebd97cc52c0b32e7 (patch)
treec0ac3561e92d6a09cc78626af4370818d084273a /Doc/library/collections.rst
parent484f20d2ff95cc2e1bea759852da307bc1d1d944 (diff)
downloadcpython-dfd775a0b1aee51d842b20cdebd97cc52c0b32e7.zip
cpython-dfd775a0b1aee51d842b20cdebd97cc52c0b32e7.tar.gz
cpython-dfd775a0b1aee51d842b20cdebd97cc52c0b32e7.tar.bz2
Minor doc improvement (GH-10341)
Change "star-operator" to "* operator".
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r--Doc/library/collections.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 64de970..8d53e68 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -971,7 +971,7 @@ function:
>>> getattr(p, 'x')
11
-To convert a dictionary to a named tuple, use the double-star-operator
+To convert a dictionary to a named tuple, use the ``**`` operator
(as described in :ref:`tut-unpacking-arguments`):
>>> d = {'x': 11, 'y': 22}