Skip to content

Commit a1731c9

Browse files
ressolve issue #6616
linting error coming because use WARNING keyword in comment which is not allowed to use explicitly Signed-off-by: GURU PRASAD SHARMA <[email protected]>
1 parent 40de89d commit a1731c9

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/strided/base/unary-addon-dispatch/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/strided/base/unary-addon-dispatch/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ function dispatch( addon, fallback ) {
152152
var viewX;
153153
var viewY;
154154

155-
// WARNING: we assume that, if we're provided something resembling a typed array, we're provided a typed array; however, this can lead to potential unintended errors as the native add-on may not work with non-typed array objects (e.g., generic arrays)...
155+
// we assume that, if we're provided something resembling a typed array, we're provided a typed array; however, this can lead to potential unintended errors as the native add-on may not work with non-typed array objects (e.g., generic arrays)...
156156
if ( !isTypedArrayLike( x ) || !isTypedArrayLike( y ) ) {
157157
fallback( N, dtypeX, x, strideX, offsetX, dtypeY, y, strideY, offsetY ); // eslint-disable-line max-len
158158
return y;

0 commit comments

Comments
 (0)