Skip to content

Commit 6ea4c3d

Browse files
authored
Update index.js
Signed-off-by: Gunj Joshi <[email protected]>
1 parent 26b02b9 commit 6ea4c3d

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/assert/is-oddf/examples

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/assert/is-oddf/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ x = randu( 100, -50, 50 );
2929

3030
for ( i = 0; i < 100; i++ ) {
3131
bool = isOddf( x[ i % 100 ] );
32-
console.log( '%d is %s', x, ( bool ) ? 'odd' : 'not odd' );
32+
console.log( '%d is %s', x[ i % 100 ], ( bool ) ? 'odd' : 'not odd' );
3333
}

0 commit comments

Comments
 (0)