Skip to content

Commit 9020783

Browse files
authored
[libc][math] Add missing parenthesis in sollya command (#132298)
This PR adds the missing opening parenthesis for sollya command comment in `libc/src/math/generic/cbrtf.cpp#L28`. Signed-off-by: krishna2803 <[email protected]>
1 parent 0ffe83f commit 9020783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/math/generic/cbrtf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ constexpr double CBRT2[3] = {1.0, 0x1.428a2f98d728bp0, 0x1.965fea53d6e3dp0};
2525
// Degree-7 polynomials approximation of ((1 + x)^(1/3) - 1)/x for 0 <= x <= 1
2626
// generated by Sollya with:
2727
// > for i from 0 to 15 do {
28-
// P = fpminimax((1 + x)^(1/3) - 1)/x, 6, [|D...|], [i/16, (i + 1)/16]);
28+
// P = fpminimax(((1 + x)^(1/3) - 1)/x, 6, [|D...|], [i/16, (i + 1)/16]);
2929
// print("{", coeff(P, 0), ",", coeff(P, 1), ",", coeff(P, 2), ",",
3030
// coeff(P, 3), ",", coeff(P, 4), ",", coeff(P, 5), ",",
3131
// coeff(P, 6), "},");

0 commit comments

Comments
 (0)