Skip to content

Commit 5823d66

Browse files
Update index.js
fixeslinit error Signed-off-by: Suyash Pathak <suyashp271@gmail.com>
1 parent 7c208b6 commit 5823d66

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/base/assert/is-row-major/examples

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/assert/is-row-major/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ var shape = [ 10, 10, 10 ];
2525

2626
var strides = shape2strides( shape, 'row-major' );
2727
console.log( 'Strides: %s', strides.join( ',' ) );
28-
// => Strides: 100,10,1
28+
// => 'Strides: 100,10,1'
2929

3030
var bool = isRowMajor( strides );
3131
console.log( bool );
3232
// => true
3333

3434
strides = shape2strides( shape, 'column-major' );
3535
console.log( 'Strides: %s', strides.join( ',' ) );
36-
// => Strides: 1,10,100
36+
// => 'Strides: 1,10,100'
3737

3838
bool = isRowMajor( strides );
3939
console.log( bool );

0 commit comments

Comments
 (0)