Skip to content

Commit 26e180f

Browse files
committed
Remove decimals
1 parent 115affc commit 26e180f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/strided/special/abs-by/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ var y = filledarray( null, 10, 'generic' );
215215
216216
var i;
217217
for ( i = 0; i < x.length; i++ ) {
218-
x[ i ] = discreteUniform( -100.0, 100.0 );
218+
x[ i ] = discreteUniform( -100, 100 );
219219
}
220220
console.log( x );
221221
console.log( y );

lib/node_modules/@stdlib/math/strided/special/abs-by/examples/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var y = filledarray( null, 10, 'generic' );
3535

3636
var i;
3737
for ( i = 0; i < x.length; i++ ) {
38-
x[ i ] = discreteUniform( -100.0, 100.0 );
38+
x[ i ] = discreteUniform( -100, 100 );
3939
}
4040
console.log( x );
4141
console.log( y );

0 commit comments

Comments
 (0)