Skip to content

Commit 5719489

Browse files
committed
fix: resolve lint errors
1 parent 6de0449 commit 5719489

File tree

7 files changed

+6
-20
lines changed

7 files changed

+6
-20
lines changed

lib/node_modules/@stdlib/complex/float32/base/add/README.md

100755100644
Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -261,14 +261,6 @@ int main( void ) {
261261

262262
<section class="related">
263263

264-
* * *
265-
266-
## See Also
267-
268-
- <span class="package-name">[`@stdlib/complex/float64/base/add`][@stdlib/complex/float64/base/add]</span><span class="delimiter">: </span><span class="description">add two double-precision complex floating-point numbers.</span>
269-
- <span class="package-name">[`@stdlib/complex/float32/base/mul`][@stdlib/complex/float32/base/mul]</span><span class="delimiter">: </span><span class="description">multiply two single-precision complex floating-point numbers.</span>
270-
- <span class="package-name">[`@stdlib/math/base/ops/csubf`][@stdlib/math/base/ops/csubf]</span><span class="delimiter">: </span><span class="description">subtract two single-precision complex floating-point numbers.</span>
271-
272264
</section>
273265

274266
<!-- /.related -->
@@ -279,12 +271,6 @@ int main( void ) {
279271

280272
<!-- <related-links> -->
281273

282-
[@stdlib/complex/float64/base/add]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/base/add
283-
284-
[@stdlib/complex/float32/base/mul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/mul
285-
286-
[@stdlib/math/base/ops/csubf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/csubf
287-
288274
<!-- </related-links> -->
289275

290276
</section>

lib/node_modules/@stdlib/complex/float32/base/add/benchmark/benchmark.asssign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ bench( pkg+':assign', function benchmark( b ) {
6767
}
6868
b.pass( 'benchmark finished' );
6969
b.end();
70-
});
70+
});

lib/node_modules/@stdlib/complex/float32/base/add/benchmark/benchmark.strided.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ bench( pkg+':strided', function benchmark( b ) {
6565
}
6666
b.pass( 'benchmark finished' );
6767
b.end();
68-
});
68+
});

lib/node_modules/@stdlib/complex/float32/base/add/lib/assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ function assign( re1, im1, re2, im2, out, strideOut, offsetOut ) {
5252

5353
// EXPORTS //
5454

55-
module.exports = assign;
55+
module.exports = assign;

lib/node_modules/@stdlib/complex/float32/base/add/lib/strided.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ function strided( z1, strideZ1, offsetZ1, z2, strideZ2, offsetZ2, out, strideOut
5757

5858
// EXPORTS //
5959

60-
module.exports = strided;
60+
module.exports = strided;

lib/node_modules/@stdlib/complex/float32/base/add/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ tape( 'attached to the main export is a `strided` method', function test( t ) {
4343
t.ok( true, __filename );
4444
t.strictEqual( isMethod( add, 'strided' ), true, 'returns expected value' );
4545
t.end();
46-
});
46+
});

lib/node_modules/@stdlib/complex/float32/base/add/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@ tape( 'if a real or imaginary component is `NaN`, the resulting component is `Na
107107
t.strictEqual( isnanf( imag( v ) ), true, 'returns expected value' );
108108

109109
t.end();
110-
});
110+
});

0 commit comments

Comments
 (0)