summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-08-12 02:54:10 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-08-12 02:54:10 (GMT)
commitfc07e5684411a92580d92384e684c2e28c4f5885 (patch)
tree3adeaedd5ada2ebf77e32f89e1725d722a1f3a04 /Objects
parent18c15b9bbdbe336a5ac542dfd555c87f0cf9328b (diff)
downloadcpython-fc07e5684411a92580d92384e684c2e28c4f5885.zip
cpython-fc07e5684411a92580d92384e684c2e28c4f5885.tar.gz
cpython-fc07e5684411a92580d92384e684c2e28c4f5885.tar.bz2
k_mul(): Repaired another typo in another comment.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/longobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c
index b63b305..4a37e5e 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)) {