Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Athan <[email protected]>
  • Loading branch information
kgryte authored Jan 2, 2025
1 parent 6ce2b53 commit a4c2111
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/ext/base/dsumors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ var v = dsumors.ndarray( 4, x, 2, 1 );
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
var dsumors = require( '@stdlib/blas/ext/base/dsumors' );

var x = discreteUniform( 10.0, -100, 100, {
var x = discreteUniform( 10, -100, 100, {
'dtype': 'float64'
});
console.log( x );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
var dsumors = require( './../lib' );

var x = discreteUniform( 10.0, -100, 100, {
var x = discreteUniform( 10, -100, 100, {
'dtype': 'float64'
});
console.log( x );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ tape( 'the function supports a negative `stride` parameter', function test( t )
t.end();
});

tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated N times', function test( t ) {
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of the first element repeated N times', function test( t ) {
var x;
var v;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ tape( 'the function supports a negative `stride` parameter', opts, function test
t.end();
});

tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated N times', opts, function test( t ) {
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of the first element repeated N times', opts, function test( t ) {
var x;
var v;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ tape( 'the function supports a negative `stride` parameter', function test( t )
t.end();
});

tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated N times', function test( t ) {
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of the first element repeated N times', function test( t ) {
var x;
var v;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ tape( 'the function supports a negative `stride` parameter', opts, function test
t.end();
});

tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated N times', opts, function test( t ) {
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of the first element repeated N times', opts, function test( t ) {
var x;
var v;

Expand Down

0 comments on commit a4c2111

Please sign in to comment.