From: Raymond Hettinger Date: Sat, 2 Aug 2014 06:51:51 +0000 (-0700) Subject: Fix typo in comment. X-Git-Tag: v2.7.9rc1~326 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9376c8b5e3de2dc6b6c6d7bcf28480d41374de36;p=thirdparty%2FPython%2Fcpython.git Fix typo in comment. --- diff --git a/Objects/classobject.c b/Objects/classobject.c index 2c9c21694e48..636d17831d15 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -4,7 +4,7 @@ #include "Python.h" #include "structmember.h" -/* Free list for method objects to safe malloc/free overhead +/* Free list for method objects to save malloc/free overhead * The im_self element is used to chain the elements. */ static PyMethodObject *free_list;