Skip to content

Commit bad38d3

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 83a07c4 commit bad38d3

File tree

7 files changed

+6
-7
lines changed

7 files changed

+6
-7
lines changed

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

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

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

lib/node_modules/@stdlib/blas/ext/base/dsumkbn2/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 dsumkbn2 = 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/dsumkbn2/lib/ndarray.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ var abs = require( '@stdlib/math/base/special/abs' );
4444
*
4545
* @example
4646
* var Float64Array = require( '@stdlib/array/float64' );
47-
* var floor = require( '@stdlib/math/base/special/floor' );
4847
*
4948
* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] );
5049
*

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

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

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

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

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

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)