]> granicus.if.org Git - python/commitdiff
k_mul(): Repaired another typo in another comment.
authorTim Peters <tim.peters@gmail.com>
Mon, 12 Aug 2002 02:54:10 +0000 (02:54 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 12 Aug 2002 02:54:10 +0000 (02:54 +0000)
Objects/longobject.c

index b63b305622608088f7f214fedbc02405eb3d4b78..4a37e5e14e4b73be975e4e8f53a74d37034a4aa0 100644 (file)
@@ -1567,7 +1567,7 @@ k_mul(PyLongObject *a, PyLongObject *b)
         * been reduced to 3 multiplies on numbers half the size.
         */
 
-       /* We want to split based on the larger number; fiddle so that a
+       /* We want to split based on the larger number; fiddle so that b
         * is largest.
         */
        if (ABS(a->ob_size) > ABS(b->ob_size)) {