From: Guido van Rossum Date: Thu, 1 Oct 1998 15:59:48 +0000 (+0000) Subject: Typo reported by Greg Stein: "modifiable" is the correct spelling. X-Git-Tag: v1.5.2a2~202 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=07d780089d96c228bbf5dfb3c07bc926b7d5eaa1;p=thirdparty%2FPython%2Fcpython.git Typo reported by Greg Stein: "modifiable" is the correct spelling. --- diff --git a/Objects/stringobject.c b/Objects/stringobject.c index dffc8e0e1a4a..648e6e2a486f 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; }