]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-93240: clarify wording in IO tutorial (GH-93276) (GH-94081)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 21 Jun 2022 19:51:34 +0000 (12:51 -0700)
committerGitHub <noreply@github.com>
Tue, 21 Jun 2022 19:51:34 +0000 (21:51 +0200)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
(cherry picked from commit 51d673176ac90f2144e3e7a492e5b3ea53bdba2e)

Co-authored-by: paulreece <96156234+paulreece@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}