]> granicus.if.org Git - python/commitdiff
Fixed a typo in a comment.
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Fri, 18 Jun 2010 16:22:00 +0000 (16:22 +0000)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Fri, 18 Jun 2010 16:22:00 +0000 (16:22 +0000)
Modules/_time.c

index 9b63c2039fe759b1f441f073db37f1c430432f53..10cc8e12a6ab0360de97528b6ef8043132ca9164 100644 (file)
@@ -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) {