summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-09-11 15:51:47 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-09-11 15:51:47 (GMT)
commit79e5088a604365e66cf2879b946fb49c74597202 (patch)
tree0ffa3450ec5ed532bdb92f7e11aa5b0a4f404386
parentec1a498a01da2b4df22413ff778529d84111c2ee (diff)
downloadcpython-79e5088a604365e66cf2879b946fb49c74597202.zip
cpython-79e5088a604365e66cf2879b946fb49c74597202.tar.gz
cpython-79e5088a604365e66cf2879b946fb49c74597202.tar.bz2
Fix grammatical error in csv docs.
Reported by Nat Dunn on docs@
-rw-r--r--Doc/library/csv.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst
index 313dce0..e9a9cb5 100644
--- a/Doc/library/csv.rst
+++ b/Doc/library/csv.rst
@@ -324,7 +324,7 @@ Dialects support the following attributes:
.. attribute:: Dialect.doublequote
- Controls how instances of *quotechar* appearing inside a field should be
+ Controls how instances of *quotechar* appearing inside a field should
themselves be quoted. When :const:`True`, the character is doubled. When
:const:`False`, the *escapechar* is used as a prefix to the *quotechar*. It
defaults to :const:`True`.