Skip to content

Commit bf5e670

Browse files
committed
fix: resolve lint errors
1 parent fd0b871 commit bf5e670

File tree

3 files changed

+3
-34
lines changed

3 files changed

+3
-34
lines changed

lib/node_modules/@stdlib/blas/ext/base/sapxsumkbn/README.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -161,15 +161,6 @@ console.log( v );
161161

162162
<section class="related">
163163

164-
* * *
165-
166-
## See Also
167-
168-
- <span class="package-name">[`@stdlib/blas/ext/base/dapxsumkbn`][@stdlib/blas/ext/base/dapxsumkbn]</span><span class="delimiter">: </span><span class="description">add a constant to each double-precision floating-point strided array element and compute the sum using an improved Kahan–Babuška algorithm.</span>
169-
- <span class="package-name">[`@stdlib/blas/ext/base/gapxsumkbn`][@stdlib/blas/ext/base/gapxsumkbn]</span><span class="delimiter">: </span><span class="description">add a scalar constant to each strided array element and compute the sum using an improved Kahan–Babuška algorithm.</span>
170-
- <span class="package-name">[`@stdlib/blas/ext/base/sapxsum`][@stdlib/blas/ext/base/sapxsum]</span><span class="delimiter">: </span><span class="description">add a constant to each single-precision floating-point strided array element and compute the sum.</span>
171-
- <span class="package-name">[`@stdlib/blas/ext/base/ssumkbn`][@stdlib/blas/ext/base/ssumkbn]</span><span class="delimiter">: </span><span class="description">calculate the sum of single-precision floating-point strided array elements using an improved Kahan–Babuška algorithm.</span>
172-
173164
</section>
174165

175166
<!-- /.related -->
@@ -186,14 +177,6 @@ console.log( v );
186177

187178
<!-- <related-links> -->
188179

189-
[@stdlib/blas/ext/base/dapxsumkbn]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dapxsumkbn
190-
191-
[@stdlib/blas/ext/base/gapxsumkbn]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gapxsumkbn
192-
193-
[@stdlib/blas/ext/base/sapxsum]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/sapxsum
194-
195-
[@stdlib/blas/ext/base/ssumkbn]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/ssumkbn
196-
197180
<!-- </related-links> -->
198181

199182
</section>

lib/node_modules/@stdlib/constants/float32/pi/README.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,6 @@ Macro for the mathematical constant [π][pi].
108108

109109
<section class="related">
110110

111-
* * *
112-
113-
## See Also
114-
115-
- <span class="package-name">[`@stdlib/constants/float32/fourth-pi`][@stdlib/constants/float32/fourth-pi]</span><span class="delimiter">: </span><span class="description">1/4 times π.</span>
116-
- <span class="package-name">[`@stdlib/constants/float32/half-pi`][@stdlib/constants/float32/half-pi]</span><span class="delimiter">: </span><span class="description">1/2 times π.</span>
117-
- <span class="package-name">[`@stdlib/constants/float32/two-pi`][@stdlib/constants/float32/two-pi]</span><span class="delimiter">: </span><span class="description">2π.</span>
118-
119111
</section>
120112

121113
<!-- /.related -->
@@ -128,12 +120,6 @@ Macro for the mathematical constant [π][pi].
128120

129121
<!-- <related-links> -->
130122

131-
[@stdlib/constants/float32/fourth-pi]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float32/fourth-pi
132-
133-
[@stdlib/constants/float32/half-pi]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float32/half-pi
134-
135-
[@stdlib/constants/float32/two-pi]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float32/two-pi
136-
137123
<!-- </related-links> -->
138124

139125
</section>

lib/node_modules/@stdlib/stats/base/dists/planck/mode/test/test.native.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var opts = {
3737

3838
// TESTS //
3939

40-
tape( 'main export is a function', opts , function test( t ) {
40+
tape( 'main export is a function', opts, function test( t ) {
4141
t.ok( true, __filename );
4242
t.strictEqual( typeof mode, 'function', 'main export is a function' );
4343
t.end();
@@ -50,7 +50,7 @@ tape( 'if provided `NaN` for `lambda`, the function returns `NaN`', opts, functi
5050
t.end();
5151
});
5252

53-
tape( 'if provided a shape parameter `lambda` which is nonpositive, the function returns `NaN`', opts , function test( t ) {
53+
tape( 'if provided a shape parameter `lambda` which is nonpositive, the function returns `NaN`', opts, function test( t ) {
5454
var v;
5555

5656
v = mode( 0.0 );
@@ -62,7 +62,7 @@ tape( 'if provided a shape parameter `lambda` which is nonpositive, the function
6262
t.end();
6363
});
6464

65-
tape( 'the function returns `0.0` as the mode of a Planck distribution', opts , function test( t ) {
65+
tape( 'the function returns `0.0` as the mode of a Planck distribution', opts, function test( t ) {
6666
var lambda;
6767
var i;
6868
var y;

0 commit comments

Comments
 (0)