summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-06-21 19:51:34 (GMT)
committerGitHub <noreply@github.com>2022-06-21 19:51:34 (GMT)
commit6432a8972b27aa0f2ef625ec538f8487f12e14de (patch)
treea4f519b01b4162e9a98b0b4ce67f2072248c7031 /Doc
parent9ab245f8ca84e75c6d11d3683f498427b1425366 (diff)
downloadcpython-6432a8972b27aa0f2ef625ec538f8487f12e14de.zip
cpython-6432a8972b27aa0f2ef625ec538f8487f12e14de.tar.gz
cpython-6432a8972b27aa0f2ef625ec538f8487f12e14de.tar.bz2
gh-93240: clarify wording in IO tutorial (GH-93276) (GH-94081)
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>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/tutorial/inputoutput.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst
index b500636..1f1ef28 100644
--- a/Doc/tutorial/inputoutput.rst
+++ b/Doc/tutorial/inputoutput.rst
@@ -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}