Skip to content

Commit 5d67867

Browse files
committed
[libc] Update comments again.
1 parent 03fc016 commit 5d67867

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/math/generic/explogxf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ LIBC_INLINE static float log_eval_f(float x) {
310310
// p1 * 2^(-7) <= m_x < (p1 + 1) * 2^(-7).
311311
int p1 = static_cast<int>(xbits.get_mantissa() >> (FPBits::FRACTION_LEN - 7));
312312

313-
// Set bits to (1 + (mx - p1*2^(-7))
313+
// Set bits to (1 + (mx - p1*2^(-7)))
314314
xbits.set_uintval(xbits.uintval() & (FPBits::FRACTION_MASK >> 7));
315315
xbits.set_biased_exponent(FPBits::EXP_BIAS);
316316
// dx = (mx - p1*2^(-7)) / (1 + p1*2^(-7)).

0 commit comments

Comments
 (0)