]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-93240: clarify wording in IO tutorial (GH-93276)
authorpaulreece <96156234+paulreece@users.noreply.github.com>
Tue, 21 Jun 2022 19:40:11 +0000 (15:40 -0400)
committerGitHub <noreply@github.com>
Tue, 21 Jun 2022 19:40:11 +0000 (21:40 +0200)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Doc/tutorial/inputoutput.rst

index b50063654e2628c98ca2ab165a1ec0b70ea28b8b..1f1ef28e5cad403af76bcfd02c0cee738263dc8b 100644 (file)
@@ -179,7 +179,7 @@ square brackets ``'[]'`` to access the keys. ::
    ...       'Dcab: {0[Dcab]:d}'.format(table))
    Jack: 4098; Sjoerd: 4127; Dcab: 8637678
 
-This could also be done by passing the table as keyword arguments with the '**'
+This could also be done by passing the ``table`` dictionary as keyword arguments with the ``**``
 notation. ::
 
    >>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678}