Skip to content

Commit d5d9776

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 151a808 commit d5d9776

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/base/cscal/test/test.ndarray.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ tape( 'the function has an arity of 5', function test( t ) {
4242
t.end();
4343
});
4444

45-
tape( 'the function scales elements from `x` by `cx`', function test( t ) {
45+
tape( 'the function scales elements from `cx` by `ca`', function test( t ) {
4646
var expected;
4747
var delta;
4848
var viewX;
@@ -207,7 +207,7 @@ tape( 'the function supports an `x` offset', function test( t ) {
207207
t.end();
208208
});
209209

210-
tape( 'the function returns a reference to the output array', function test( t ) {
210+
tape( 'the function returns a reference to the input array', function test( t ) {
211211
var out;
212212
var ca;
213213
var cx;
@@ -221,7 +221,7 @@ tape( 'the function returns a reference to the output array', function test( t )
221221
t.end();
222222
});
223223

224-
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns the output array unchanged', function test( t ) {
224+
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns the input array unchanged', function test( t ) {
225225
var expected;
226226
var viewX;
227227
var ca;
@@ -242,7 +242,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
242242
t.end();
243243
});
244244

245-
tape( 'if provided an `strideX` parameter less than or equal to `0`, the function returns the output array unchanged', function test( t ) {
245+
tape( 'if provided an `strideX` parameter less than or equal to `0`, the function returns the input array unchanged', function test( t ) {
246246
var expected;
247247
var viewX;
248248
var ca;

0 commit comments

Comments
 (0)