Skip to content

Commit b910610

Browse files
authored
[libc][math] Fix Sollya command (#131091)
Fix a minor syntax error in the Sollya command in the comments of asinhf.
1 parent 02fae68 commit b910610

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/math/generic/asinhf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ LLVM_LIBC_FUNCTION(float, asinhf, (float x)) {
3636
double x_d = x;
3737
double x_sq = x_d * x_d;
3838
// Generated by Sollya with:
39-
// > P = fpminimax(asinh(x)/x, [|0, 2, 4, 6, 8, 10, 12, 14, 16], [|D...|],
39+
// > P = fpminimax(asinh(x)/x, [|0, 2, 4, 6, 8, 10, 12, 14, 16|], [|D...|],
4040
// [0, 2^-2]);
4141
double p = fputil::polyeval(
4242
x_sq, 0.0, -0x1.555555555551ep-3, 0x1.3333333325495p-4,

0 commit comments

Comments
 (0)