We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e441847 commit 0148470Copy full SHA for 0148470
Modules/mathmodule.c
@@ -646,7 +646,7 @@ m_remainder(double x, double y)
646
Warning: some subtlety here. What we *want* to know at this point is
647
whether the remainder m is less than, equal to, or greater than half
648
of absy. However, we can't do that comparison directly because we
649
- can't be sure that 0.5*absy is representable (the mutiplication
+ can't be sure that 0.5*absy is representable (the multiplication
650
might incur precision loss due to underflow). So instead we compare
651
m with the complement c = absy - m: m < 0.5*absy if and only if m <
652
c, and so on. The catch is that absy - m might also not be
0 commit comments