summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-10-07 19:30:39 (GMT)
committerGitHub <noreply@github.com>2022-10-07 19:30:39 (GMT)
commite73cb54a063ddfc1530031e95c23209ed2883a82 (patch)
tree29058a064c75c2bcc8539d6e04663f2bb68c51d5 /Doc
parent7565944994a98f0c78026487009d90661b94e4b7 (diff)
downloadcpython-e73cb54a063ddfc1530031e95c23209ed2883a82.zip
cpython-e73cb54a063ddfc1530031e95c23209ed2883a82.tar.gz
cpython-e73cb54a063ddfc1530031e95c23209ed2883a82.tar.bz2
gh-65496: Correct wording on csv's skipinitialspace argument (GH-96170)
(cherry picked from commit 676d8ef3806758bcd1d3fd84a746c8a9b64480d0) Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
Diffstat (limited to 'Doc')
-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 899ce02..3a41ae2 100644
--- a/Doc/library/csv.rst
+++ b/Doc/library/csv.rst
@@ -412,7 +412,7 @@ Dialects support the following attributes:
.. attribute:: Dialect.skipinitialspace
- When :const:`True`, whitespace immediately following the *delimiter* is ignored.
+ When :const:`True`, spaces immediately following the *delimiter* are ignored.
The default is :const:`False`.