Skip to content

Commit df45d00

Browse files
authored
resolve lint issue
Signed-off-by: Harsh <[email protected]>
1 parent 3d50391 commit df45d00

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ v = kernelSin( NaN, NaN );
6464

6565
- For increased accuracy, the number for which the [sine][sine] 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`).
6666

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

6969
<!-- <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."> -->
7070

@@ -180,7 +180,7 @@ double stdlib_base_kernel_sin( const double x, const double y );
180180
181181
int main( void ) {
182182
const double x[] = { -0.7853981633974483, -0.6108652381980153, -0.4363323129985824, -0.26179938779914946, -0.08726646259971649, 0.08726646259971649, 0.26179938779914935, 0.43633231299858233, 0.6108652381980153, 0.7853981633974483 };
183-
183+
184184
double out;
185185
int i;
186186
for ( i = 0; i < 10; i++ ) {

0 commit comments

Comments
 (0)