Skip to content

Commit b539224

Browse files
committed
Fix example
1 parent 47e27e7 commit b539224

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/assert/is-symmetric-matrix/docs

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/assert/is-symmetric-matrix/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
> M.dtype = 'generic';
2525
> M.length = 4;
2626
> M.flags = {};
27-
> M.get = function get( i, j ) {};
27+
> M.get = function get( i, j ) { return (2*i)+j; };
2828
> M.set = function set( i, j ) {};
2929
> var bool = {{alias}}( M )
3030
true

0 commit comments

Comments
 (0)