Skip to content

Commit 65b435c

Browse files
paulreeceambv
authored andcommitted
[3.11] pythongh-93240: clarify wording in IO tutorial (pythonGH-93276)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> (cherry picked from commit 51d6731) Co-authored-by: paulreece <96156234+paulreece@users.noreply.github.com>
1 parent b1b0656 commit 65b435c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/tutorial/inputoutput.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ square brackets ``'[]'`` to access the keys. ::
179179
... 'Dcab: {0[Dcab]:d}'.format(table))
180180
Jack: 4098; Sjoerd: 4127; Dcab: 8637678
181181

182-
This could also be done by passing the table as keyword arguments with the '**'
182+
This could also be done by passing the ``table`` dictionary as keyword arguments with the ``**``
183183
notation. ::
184184

185185
>>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678}

0 commit comments

Comments
 (0)