Skip to content

Commit 6f51c47

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent c206414 commit 6f51c47

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ tape( 'the function supports view offsets', function test( t ) {
362362
out0 = new Float32Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
363363

364364
// Create offset views...
365-
condition1 = new BooleanArray( condition0.buffer, condition0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element // eslint-disable-line max-len
365+
condition1 = new BooleanArray( condition0.buffer, condition0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element
366366
x1 = new Float32Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element
367367
y1 = new Float32Array( y0.buffer, y0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element
368368
out1 = new Float32Array( out0.buffer, out0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ tape( 'the function supports view offsets', opts, function test( t ) {
371371
out0 = new Float32Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
372372

373373
// Create offset views...
374-
condition1 = new BooleanArray( condition0.buffer, condition0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element // eslint-disable-line max-len
374+
condition1 = new BooleanArray( condition0.buffer, condition0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element
375375
x1 = new Float32Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element
376376
y1 = new Float32Array( y0.buffer, y0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element
377377
out1 = new Float32Array( out0.buffer, out0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element

0 commit comments

Comments
 (0)