From fc07e5684411a92580d92384e684c2e28c4f5885 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Mon, 12 Aug 2002 02:54:10 +0000 Subject: [PATCH] k_mul(): Repaired another typo in another comment. --- Objects/longobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/longobject.c b/Objects/longobject.c index b63b305622..4a37e5e14e 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -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)) { -- 2.50.1