Skip to content

Commit 3da4caa

Browse files
gh-151556: Tweak wording of writer example file output
Apply changes from code review. Co-authored-by: Stan Ulbrych <stan@python.org> Co-authored-by: Stan Ulbrych <stan@python.org>
1 parent 41b98e4 commit 3da4caa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/library/csv.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ The :mod:`!csv` module defines the following functions:
117117
spamwriter.writerow(['Spam'] * 5 + ['Baked Beans'])
118118
spamwriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam'])
119119

120-
The example writes :file:`eggs.csv` with this content:
120+
which writes :file:`eggs.csv` containing:
121121

122122
.. code-block:: text
123123
@@ -250,7 +250,7 @@ The :mod:`!csv` module defines the following classes:
250250
writer.writerow({'first_name': 'Lovely', 'last_name': 'Spam'})
251251
writer.writerow({'first_name': 'Wonderful', 'last_name': 'Spam'})
252252

253-
The example writes :file:`names.csv` with this content:
253+
which writes :file:`names.csv` containing:
254254

255255
.. code-block:: text
256256

0 commit comments

Comments
 (0)