Skip to content

Commit b92e4b8

Browse files
authored
docs: update example to preserve original intent
Signed-off-by: Athan <[email protected]>
1 parent ee59feb commit b92e4b8

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/ndarray/dlast-index-of

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/ndarray/dlast-index-of/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ var ndarray = require( '@stdlib/ndarray/base/ctor' );
7878
var xbuf = new Float64Array( [ 1.0, 2.0, 4.0, 2.0 ] );
7979
var x = new ndarray( 'float64', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
8080

81-
var searchElement = scalar2ndarray( 2.0, {
81+
var searchElement = scalar2ndarray( 10.0, {
8282
'dtype': 'float64'
8383
});
8484

85-
var fromIndex = scalar2ndarray( 0, {
85+
var fromIndex = scalar2ndarray( 3, {
8686
'dtype': 'generic'
8787
});
8888

0 commit comments

Comments
 (0)