Skip to content

Commit de3e5f4

Browse files
committed
docs: update comment
1 parent 657947f commit de3e5f4

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/ndarray/numel/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/ndarray/numel/lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function numel( x ) {
4747
var d;
4848
var i;
4949

50-
// Note: we intentionally avoid rigorous ndarray checks to minimize performance impacts. This obviously means that non-ndarray-like objects (e.g., vanilla arrays) can sneak through, but that this probably all right for the purposes of this function...
50+
// Note: we intentionally avoid rigorous ndarray checks to minimize performance impacts. This obviously means that non-ndarray-like objects (e.g., vanilla arrays) can sneak through, but this is likely all right for the purposes of this function...
5151
if ( typeof x !== 'object' || x === null ) {
5252
throw new TypeError( format( 'invalid argument. Must provide an ndarray. Value: `%s`.', x ) );
5353
}

0 commit comments

Comments
 (0)