Skip to content

Commit 7093864

Browse files
authored
chore: fix EditorConfig lint errors
PR-URL: #5373 Closes: #5360 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 6670680 commit 7093864

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/kernel-tan

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/kernel-tan/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ out = kernelTan( 0.664, 5.288e-17, 1 );
4545
// returns ~0.783
4646
```
4747

48-
If `k = 1`, the function returns `tan(x+y)`. To return the negative inverse `-1/tan(x+y)`, set `k = -1`.
48+
If `k = 1`, the function returns `tan(x+y)`. To return the negative inverse `-1/tan(x+y)`, set `k = -1`.
4949

5050
```javascript
5151
var out = kernelTan( 3.141592653589793/4.0, 0.0, -1 );
@@ -75,7 +75,7 @@ out = kernelTan( NaN, NaN, 1 );
7575

7676
- For increased accuracy, the number for which the [tangent][tangent] should be evaluated can be supplied as a [double-double number][double-double-arithmetic] (i.e., a non-evaluated sum of two [double-precision floating-point numbers][ieee754] `x` and `y`).
7777

78-
- As components of a [double-double number][double-double-arithmetic], the two [double-precision floating-point numbers][ieee754] `x` and `y` must satisfy
78+
- As components of a [double-double number][double-double-arithmetic], the two [double-precision floating-point numbers][ieee754] `x` and `y` must satisfy
7979

8080
<!-- <equation class="equation" label="eq:double_double_inequality" align="center" raw="|y| \leq \frac{1}{2} \operatorname{ulp}(x)" alt="Inequality for the two components of a double-double number."> -->
8181

0 commit comments

Comments
 (0)