Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var IGNORE = require( './ignore_patterns.json' );
*
* @example
* var errs = lint();
* // returns [...]
* // returns []
*/
function lint( options ) {
var pattern;
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/fill/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function fill( x, value ) {
v = broadcastScalar( value, dt, getShape( x ), getOrder( x ) );

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


Expand Down
Loading