Skip to content

Commit 8a1004a

Browse files
author
zhanggy
committed
chore: fix JavaScript lint errors (issue #6943)
1 parent 67246dd commit 8a1004a

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/_tools/lint/header-filenames/lib/sync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var IGNORE = require( './ignore_patterns.json' );
4343
*
4444
* @example
4545
* var errs = lint();
46-
* // returns [...]
46+
* // returns []
4747
*/
4848
function lint( options ) {
4949
var pattern;

lib/node_modules/@stdlib/ndarray/base/fill/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function fill( x, value ) {
8989
v = broadcastScalar( value, dt, getShape( x ), getOrder( x ) );
9090

9191
// Assign the fill value to each element of the input ndarray:
92-
assign( [ v, x ] ); // TODO: consider replacing with ndarray/base/assign-scalar in order to avoid zero-dimensional ndarray creation and subsequent broadcasting
92+
assign( [ v, x ] );
9393
}
9494

9595

0 commit comments

Comments
 (0)