summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpaulreece <96156234+paulreece@users.noreply.github.com>2022-06-21 19:40:11 (GMT)
committerGitHub <noreply@github.com>2022-06-21 19:40:11 (GMT)
commit51d673176ac90f2144e3e7a492e5b3ea53bdba2e (patch)
tree8e9327436f4f33f8e2923a12a9e5f93b361e78f8
parent420f0df862cf2290ad6a5e25286925ad197c9ef5 (diff)
downloadcpython-51d673176ac90f2144e3e7a492e5b3ea53bdba2e.zip
cpython-51d673176ac90f2144e3e7a492e5b3ea53bdba2e.tar.gz
cpython-51d673176ac90f2144e3e7a492e5b3ea53bdba2e.tar.bz2
gh-93240: clarify wording in IO tutorial (GH-93276)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
-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}