]> granicus.if.org Git - python/commitdiff
Minor doc improvement (GH-10341)
authorAndre Delfino <adelfino@gmail.com>
Wed, 27 Mar 2019 01:17:50 +0000 (22:17 -0300)
committerÉric Araujo <merwok@netwok.org>
Wed, 27 Mar 2019 01:17:50 +0000 (21:17 -0400)
Change "star-operator" to "* operator".

Doc/library/collections.rst
Doc/tutorial/controlflow.rst

index 64de970fec94b418e2f5337d536514d4633ecf96..8d53e6879ef8b0bc2b4c2184da2f8e3820986c9c 100644 (file)
@@ -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}
index 905734539c685171f51f212dd08154c856e02293..abf163d232c513357edaae39c482e6fc9f91d7db 100644 (file)
@@ -560,7 +560,7 @@ The reverse situation occurs when the arguments are already in a list or tuple
 but need to be unpacked for a function call requiring separate positional
 arguments.  For instance, the built-in :func:`range` function expects separate
 *start* and *stop* arguments.  If they are not available separately, write the
-function call with the  ``*``\ -operator to unpack the arguments out of a list
+function call with the  ``*`` operator to unpack the arguments out of a list
 or tuple::
 
    >>> list(range(3, 6))            # normal call with separate arguments
@@ -573,7 +573,7 @@ or tuple::
    single: **; in function calls
 
 In the same fashion, dictionaries can deliver keyword arguments with the
-``**``\ -operator::
+``**`` operator::
 
    >>> def parrot(voltage, state='a stiff', action='voom'):
    ...     print("-- This parrot wouldn't", action, end=' ')