Skip to content

Commit 0d7516c

Browse files
committed
Fix missing variable declaration
1 parent a9a2e7d commit 0d7516c

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/special/iabs

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/special/iabs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ x = array( [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ] ); // 2x2
7272
y = iabs( x );
7373
// returns <ndarray>
7474

75-
v = y.get( 0, 1 );
75+
var v = y.get( 0, 1 );
7676
// returns 2.0
7777

7878
bool = ( y === x );

0 commit comments

Comments
 (0)