[Python-checkins] r82070 - python/branches/py3k/Modules/_time.c

alexander.belopolsky python-checkins at python.org
Fri Jun 18 18:22:01 CEST 2010


Author: alexander.belopolsky
Date: Fri Jun 18 18:22:00 2010
New Revision: 82070

Log:
Fixed a typo in a comment.

Modified:
   python/branches/py3k/Modules/_time.c

Modified: python/branches/py3k/Modules/_time.c
==============================================================================
--- python/branches/py3k/Modules/_time.c	(original)
+++ python/branches/py3k/Modules/_time.c	Fri Jun 18 18:22:00 2010
@@ -16,7 +16,7 @@
      * 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) {


More information about the Python-checkins mailing list