summaryrefslogtreecommitdiff
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
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 8d53e6879e..64de970fec 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 ``**`` operator
+To convert a dictionary to a named tuple, use the double-star-operator
(as described in :ref:`tut-unpacking-arguments`):
>>> d = {'x': 11, 'y': 22}