summaryrefslogtreecommitdiffstats
path: root/Lib/ConfigParser.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2002-11-06 14:51:20 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2002-11-06 14:51:20 (GMT)
commit9050a517c8393a473b42333281e36ec35370af35 (patch)
treef69bbda6051e308d9138b483415dae040876f168 /Lib/ConfigParser.py
parent572aae32f13b2b30a5bd3b87c5a2a7fef51eeaf8 (diff)
downloadcpython-9050a517c8393a473b42333281e36ec35370af35.zip
cpython-9050a517c8393a473b42333281e36ec35370af35.tar.gz
cpython-9050a517c8393a473b42333281e36ec35370af35.tar.bz2
Fix docstring typos
Diffstat (limited to 'Lib/ConfigParser.py')
-rw-r--r--Lib/ConfigParser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py
index 6077022..176f2ff 100644
--- a/Lib/ConfigParser.py
+++ b/Lib/ConfigParser.py
@@ -385,9 +385,9 @@ class RawConfigParser:
The sections in setup file contains a title line at the top,
indicated by a name in square brackets (`[]'), plus key/value
options lines, indicated by `name: value' format lines.
- Continuation are represented by an embedded newline then
+ Continuations are represented by an embedded newline then
leading whitespace. Blank lines, lines beginning with a '#',
- and just about everything else is ignored.
+ and just about everything else are ignored.
"""
cursect = None # None, or a dictionary
optname = None