diff options
author | Fred Drake <fdrake@acm.org> | 2010-11-09 13:33:21 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2010-11-09 13:33:21 (GMT) |
commit | 9a9aa20ca8244e4b5cb23a37ce76f318999fb40d (patch) | |
tree | b6550d84dfbd8599def2324578196dec9e560a98 | |
parent | 71431ef51ad30a37d6508ae3bb4370ca86eec9a1 (diff) | |
download | cpython-9a9aa20ca8244e4b5cb23a37ce76f318999fb40d.zip cpython-9a9aa20ca8244e4b5cb23a37ce76f318999fb40d.tar.gz cpython-9a9aa20ca8244e4b5cb23a37ce76f318999fb40d.tar.bz2 |
fix typo: spection -> section
-rw-r--r-- | Doc/library/configparser.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst index 16c8219..4b1e7a0 100644 --- a/Doc/library/configparser.rst +++ b/Doc/library/configparser.rst @@ -43,7 +43,7 @@ provided on initialization and retrieval. Lines beginning with ``'#'`` or Configuration files may include comments, prefixed by specific characters (``#`` and ``;``). Comments may appear on their own in an otherwise empty line, or may -be entered in lines holding values or spection names. In the latter case, they +be entered in lines holding values or section names. In the latter case, they need to be preceded by a whitespace character to be recognized as a comment. (For backwards compatibility, only ``;`` starts an inline comment, while ``#`` does not.) |