Skip to content

Commit 173b241

Browse files
authored
docs: rename variable
Signed-off-by: Athan <[email protected]>
1 parent 84248fe commit 173b241

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/gfind-last-index/docs

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/ext/base/gfind-last-index/docs/repl.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,20 @@
4444
Examples
4545
--------
4646
// Standard Usage:
47-
> function isEven( v ) { return v % 2.0 === 0.0; };
47+
> function f( v ) { return v % 2.0 === 0.0; };
4848
> var x = [ 1.0, 2.0, -3.0, 4.0, -5.0, 6.0 ];
49-
> {{alias}}( x.length, x, 1, isEven )
49+
> {{alias}}( x.length, x, 1, f )
5050
5
5151

5252
// Using `N` and stride parameters:
5353
> x = [ 1.0, 3.0, 4.0, -5.0, -6.0, -3.0 ];
54-
> {{alias}}( x.length, x, 2, isEven )
54+
> {{alias}}( x.length, x, 2, f )
5555
2
5656

5757
// Using view offsets:
5858
> var x0 = new {{alias:@stdlib/array/float64}}( [ 1.0, 3.0, -4.0, 5.0, -6.0 ] );
5959
> var x1 = new {{alias:@stdlib/array/float64}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
60-
> {{alias}}( 4, x1, 1, isEven )
60+
> {{alias}}( 4, x1, 1, f )
6161
3
6262

6363

0 commit comments

Comments
 (0)