Skip to content

Commit a4c2111

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 6ce2b53 commit a4c2111

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/blas/ext/base/dsumors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ var v = dsumors.ndarray( 4, x, 2, 1 );
133133
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
134134
var dsumors = require( '@stdlib/blas/ext/base/dsumors' );
135135

136-
var x = discreteUniform( 10.0, -100, 100, {
136+
var x = discreteUniform( 10, -100, 100, {
137137
'dtype': 'float64'
138138
});
139139
console.log( x );

lib/node_modules/@stdlib/blas/ext/base/dsumors/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
2222
var dsumors = require( './../lib' );
2323

24-
var x = discreteUniform( 10.0, -100, 100, {
24+
var x = discreteUniform( 10, -100, 100, {
2525
'dtype': 'float64'
2626
});
2727
console.log( x );

lib/node_modules/@stdlib/blas/ext/base/dsumors/test/test.dsumors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ tape( 'the function supports a negative `stride` parameter', function test( t )
135135
t.end();
136136
});
137137

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

lib/node_modules/@stdlib/blas/ext/base/dsumors/test/test.dsumors.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ tape( 'the function supports a negative `stride` parameter', opts, function test
226226
t.end();
227227
});
228228

229-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated N times', opts, function test( t ) {
229+
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 ) {
230230
var x;
231231
var v;
232232

lib/node_modules/@stdlib/blas/ext/base/dsumors/test/test.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ tape( 'the function supports a negative `stride` parameter', function test( t )
135135
t.end();
136136
});
137137

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

lib/node_modules/@stdlib/blas/ext/base/dsumors/test/test.ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ tape( 'the function supports a negative `stride` parameter', opts, function test
144144
t.end();
145145
});
146146

147-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated N times', opts, function test( t ) {
147+
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 ) {
148148
var x;
149149
var v;
150150

0 commit comments

Comments
 (0)