summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-10-01 15:59:48 (GMT)
committerGuido van Rossum <guido@python.org>1998-10-01 15:59:48 (GMT)
commit07d780089d96c228bbf5dfb3c07bc926b7d5eaa1 (patch)
tree2f7d3394575ae4c8878b4e8cb26cfaefc3b17200 /Objects/stringobject.c
parent4cbe3876ec0567ec042d2ca0ab04601c254f0e5f (diff)
downloadcpython-07d780089d96c228bbf5dfb3c07bc926b7d5eaa1.zip
cpython-07d780089d96c228bbf5dfb3c07bc926b7d5eaa1.tar.gz
cpython-07d780089d96c228bbf5dfb3c07bc926b7d5eaa1.tar.bz2
Typo reported by Greg Stein: "modifiable" is the correct spelling.
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r--Objects/stringobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index dffc8e0..648e6e2 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -479,7 +479,7 @@ string_buffer_getwritebuf(self, index, ptr)
const void **ptr;
{
PyErr_SetString(PyExc_TypeError,
- "Cannot use string as modifyable buffer");
+ "Cannot use string as modifiable buffer");
return -1;
}