diff options
author | Guido van Rossum <guido@python.org> | 1997-06-02 14:43:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-06-02 14:43:07 (GMT) |
commit | 80c2a1674efdfd95e979172842237509b33a8378 (patch) | |
tree | 5ae3f619b5fd529dc6896fdd76511aae946a2454 | |
parent | db7098cad57f37023088ec631784ceba7479e061 (diff) | |
download | cpython-80c2a1674efdfd95e979172842237509b33a8378.zip cpython-80c2a1674efdfd95e979172842237509b33a8378.tar.gz cpython-80c2a1674efdfd95e979172842237509b33a8378.tar.bz2 |
American spelling in doc string.
-rw-r--r-- | Objects/typeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index abf8e22..b7e9f3a 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -86,5 +86,5 @@ PyTypeObject PyType_Type = { 0, /*tp_xxx2*/ 0, /*tp_xxx3*/ 0, /*tp_xxx4*/ - "Define the behaviour of a particular type of object.", + "Define the behavior of a particular type of object.", }; |