summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-06-19 13:17:41 (GMT)
committerFred Drake <fdrake@acm.org>2000-06-19 13:17:41 (GMT)
commitaef1000bff903d8e5e113ee19ac7e018f645f8a9 (patch)
tree4bc587791356bb4f8e05909c609fca46865db7fa
parent288e97b7fefb9b766b77a858fc34003c6d259d98 (diff)
downloadcpython-aef1000bff903d8e5e113ee19ac7e018f645f8a9.zip
cpython-aef1000bff903d8e5e113ee19ac7e018f645f8a9.tar.gz
cpython-aef1000bff903d8e5e113ee19ac7e018f645f8a9.tar.bz2
Fixed docstring typo, reported by Skip Montanaro <skip@mojam.com>.
-rw-r--r--Modules/cStringIO.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cStringIO.c b/Modules/cStringIO.c
index 557545f..4c187fe 100644
--- a/Modules/cStringIO.c
+++ b/Modules/cStringIO.c
@@ -56,7 +56,7 @@ static char cStringIO_module_documentation[] =
"\n"
"This module provides a simple useful replacement for\n"
"the StringIO module that is written in C. It does not provide the\n"
-"full generality if StringIO, but it provides enough for most\n"
+"full generality of StringIO, but it provides enough for most\n"
"applications and is especially useful in conjuction with the\n"
"pickle module.\n"
"\n"