Skip to content

Commit 2cd2ee6

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 6236683 commit 2cd2ee6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/base/special/asinhf/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ var NEAR_ZERO = f32( ONE / HUGE ); // 2**-28
6969
*
7070
* ```tex
7171
* \operatorname{asinh}(x) = \begin{cases}
72-
* x & \text{ if } 1+x^2 =1, \\
72+
* x & \text{ if } 1+x^2 = 1, \\
7373
* \operatorname{sgn}(x) \cdot \left( \log(x) + \tfrac{\ln}{2} \right) & \text{ if large } |x| \\
7474
* \operatorname{sgn}(x) \cdot \log\left( 2 |x| + 1 / ( |x|+ \sqrt{x^2+1} ) \right) & \text{ if } |x| > 2 \\
7575
* \operatorname{sgn}(x) \cdot \operatorname{log1p}\left( |x| + \tfrac{x^2}{1 + \sqrt{1+x^2}} \right) & \text{otherwise}

lib/node_modules/@stdlib/math/base/special/asinhf/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
}
136136
},
137137
"keywords": [
138-
"asinhf",
138+
"asinh",
139139
"hyperbolic",
140140
"inverse",
141141
"arcsine",

lib/node_modules/@stdlib/math/base/special/asinhf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ static const float NEAR_ZERO = 1.0f / HUGE; // 2**-28
5757
*
5858
* ```tex
5959
* \operatorname{asinh}(x) = \begin{cases}
60-
* x & \text{ if } 1+x^2 =1, \\
60+
* x & \text{ if } 1+x^2 = 1, \\
6161
* \operatorname{sgn}(x) \cdot \left( \log(x) + \tfrac{\ln}{2} \right) & \text{ if large } |x| \\
6262
* \operatorname{sgn}(x) \cdot \log\left( 2 |x| + 1 / ( |x|+ \sqrt{x^2+1} ) \right) & \text{ if } |x| > 2 \\
6363
* \operatorname{sgn}(x) \cdot \operatorname{log1p}\left( |x| + \tfrac{x^2}{1 + \sqrt{1+x^2}} \right) & \text{otherwise}

0 commit comments

Comments
 (0)