diff options
author | Guido van Rossum <guido@python.org> | 1998-10-01 15:59:48 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-10-01 15:59:48 (GMT) |
commit | 07d780089d96c228bbf5dfb3c07bc926b7d5eaa1 (patch) | |
tree | 2f7d3394575ae4c8878b4e8cb26cfaefc3b17200 /Objects/stringobject.c | |
parent | 4cbe3876ec0567ec042d2ca0ab04601c254f0e5f (diff) | |
download | cpython-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.c | 2 |
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; } |