summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-11-08 11:08:35 (GMT)
committerGeorg Brandl <georg@python.org>2010-11-08 11:08:35 (GMT)
commit49d474195f808eae128649d026c9c19cbc6e8b43 (patch)
tree145a51d385f5f43d929e46c24f32c649210572b2
parentfacfb15bb96b60482721bf7703f927242ebce523 (diff)
downloadcpython-49d474195f808eae128649d026c9c19cbc6e8b43.zip
cpython-49d474195f808eae128649d026c9c19cbc6e8b43.tar.gz
cpython-49d474195f808eae128649d026c9c19cbc6e8b43.tar.bz2
Fix typo.
-rw-r--r--Doc/library/configparser.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst
index cf787e1..d80f94e 100644
--- a/Doc/library/configparser.rst
+++ b/Doc/library/configparser.rst
@@ -37,7 +37,7 @@ as parts of multiline values or ignored.
Configuration files may include comments, prefixed by specific characters (``#``
and ``;`` by default). Comments may appear on their own in an otherwise empty
-line, or may be entered in lines holding values or spection names. In the
+line, or may 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, by default only ``;`` starts an
inline comment, while ``#`` does not.)