From: Alexander Belopolsky Date: Fri, 18 Jun 2010 16:22:00 +0000 (+0000) Subject: Fixed a typo in a comment. X-Git-Tag: v3.2a1~500 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3fe3e12de6fa6ac8de888a7fa754503c50400cd4;p=thirdparty%2FPython%2Fcpython.git Fixed a typo in a comment. --- diff --git a/Modules/_time.c b/Modules/_time.c index 9b63c2039fe7..10cc8e12a6ab 100644 --- a/Modules/_time.c +++ b/Modules/_time.c @@ -16,7 +16,7 @@ _PyTime_DoubleToTimet(double x) * unreasonable, or the input just doesn't fit in a time_t; * call it an error regardless. Note that the original cast to * time_t can cause a C error too, but nothing we can do to - * worm around that. + * work around that. */ diff = x - (double)result; if (diff <= -1.0 || diff >= 1.0) {