Skip to content

Commit 4cc1f54

Browse files
committed
docs: update example
1 parent 3cd740e commit 4cc1f54

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/map/docs/types

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/map/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -633,8 +633,8 @@ declare function map<V = unknown>( x: uint8cndarray, fcn: Callback<number, numbe
633633
* var ndarray = require( '@stdlib/ndarray/ctor' );
634634
* var ndarray2array = require( '@stdlib/ndarray/to-array' );
635635
*
636-
* function invert( z ) {
637-
* return !z;
636+
* function invert( v ) {
637+
* return !v;
638638
* }
639639
*
640640
* var buffer = new BooleanArray( [ false, false, false, false, false, false, false, false, false, false, false, false ] );

0 commit comments

Comments
 (0)