Commit fc07e568 authored by Tim Peters's avatar Tim Peters

k_mul(): Repaired another typo in another comment.

parent 18c15b9b
...@@ -1567,7 +1567,7 @@ k_mul(PyLongObject *a, PyLongObject *b) ...@@ -1567,7 +1567,7 @@ k_mul(PyLongObject *a, PyLongObject *b)
* been reduced to 3 multiplies on numbers half the size. * 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. * is largest.
*/ */
if (ABS(a->ob_size) > ABS(b->ob_size)) { if (ABS(a->ob_size) > ABS(b->ob_size)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment