From 9050a517c8393a473b42333281e36ec35370af35 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Wed, 6 Nov 2002 14:51:20 +0000 Subject: [PATCH] Fix docstring typos --- Lib/ConfigParser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index 607702294b5..176f2ff713c 100644 --- a/Lib/ConfigParser.py +++ b/Lib/ConfigParser.py @@ -385,9 +385,9 @@ def _read(self, fp, fpname): 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