Skip to content

Commit c19a4cb

Browse files
committed
test: fix linting and doctest failures in math and static-analysis
1 parent c3e7558 commit c19a4cb

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

lib/node_modules/@stdlib/_tools/pkgs/entry-points/lib/sync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ var debug = logger( 'entry-points:sync' );
5555
* var pkgs = [ '/foo/bar/baz' ];
5656
*
5757
* var entries = entryPoints( pkgs );
58-
* // returns [{...}]
58+
* // throws <Error>
5959
*/
6060
function entryPoints( pkgs, options ) {
6161
var results;

lib/node_modules/@stdlib/_tools/static-analysis/js/summarize-file-list/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ Performs a static [summary analysis][@stdlib/_tools/static-analysis/js/incr/prog
5050
var files = [ './beep.js', './boop.js' ];
5151

5252
analyze( files, clbk );
53+
// throws <Error>
5354

5455
function clbk( error, results ) {
5556
if ( error ) {
@@ -72,6 +73,7 @@ var opts = {
7273
'cumulative': false
7374
};
7475
analyze( files, opts, clbk );
76+
// throws <Error>
7577

7678
function clbk( error, results ) {
7779
if ( error ) {
@@ -89,6 +91,8 @@ Synchronously performs a static [summary analysis][@stdlib/_tools/static-analysi
8991
var files = [ './beep.js', './boop.js' ];
9092

9193
var results = analyze.sync( files );
94+
// throws <Error>
95+
9296
if ( results instanceof Error ) {
9397
throw results;
9498
}

lib/node_modules/@stdlib/blas/base/dspr/test/test.dspr.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ var rl = require( './fixtures/row_major_l.json' );
3333
var ru = require( './fixtures/row_major_u.json' );
3434
var rxp = require( './fixtures/row_major_xp.json' );
3535
var rxn = require( './fixtures/row_major_xn.json' );
36-
3736
var cl = require( './fixtures/column_major_l.json' );
3837
var cu = require( './fixtures/column_major_u.json' );
3938
var cxp = require( './fixtures/column_major_xp.json' );

0 commit comments

Comments
 (0)