summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-05-17 08:27:19 -0700
committerCarlton Gibson <carlton.gibson@noumenal.es>2019-05-17 17:27:19 +0200
commite86cc14bd36734d81c4e490a2453778e33b95a45 (patch)
treed9991f0c8fc7cd41ff3c5e3eab60d024920d9283 /docs/howto
parentccb7f7c6d237900614290085cca103d9509b89b9 (diff)
Changed docs to link to Python's description of iterable.
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/outputting-csv.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/outputting-csv.txt b/docs/howto/outputting-csv.txt
index 0bca4f186a..4d614b6ab8 100644
--- a/docs/howto/outputting-csv.txt
+++ b/docs/howto/outputting-csv.txt
@@ -47,7 +47,7 @@ mention:
bill.
* For each row in your CSV file, call ``writer.writerow``, passing it an
- iterable object such as a list or tuple.
+ :term:`iterable`.
* The CSV module takes care of quoting for you, so you don't have to worry
about escaping strings with quotes or commas in them. Just pass