We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ada1f commit 30c0307Copy full SHA for 30c0307
lib/node_modules/@stdlib/math/base/assert/is-oddf/README.md
@@ -95,8 +95,8 @@ var i;
95
x = randu( 100, -50, 50 );
96
97
for ( i = 0; i < 100; i++ ) {
98
- bool = isOddf( x[ i % 100 ] );
99
- console.log( '%d is %s', x[ i % 100 ], ( bool ) ? 'odd' : 'not odd' );
+ bool = isOddf( x[ i % 100 ] );
+ console.log( '%d is %s', x[ i % 100 ], ( bool ) ? 'odd' : 'not odd' );
100
}
101
```
102
0 commit comments