Skip to content

Commit

Permalink
docs: fix copy-paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaysukh-409 committed Aug 5, 2024
1 parent 121db5a commit f1e0a81
Show file tree
Hide file tree
Showing 42 changed files with 74 additions and 77 deletions.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/mskfilter/lib/10d.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ function mskfilter10d( x, mask, y ) { // eslint-disable-line max-statements
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ function mskfilter10d( x, mask, y ) { // eslint-disable-line max-statements
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function blockedmskfilter10d( x, mask, y ) { // eslint-disable-line max-statemen
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -309,7 +309,7 @@ function blockedmskfilter10d( x, mask, y ) { // eslint-disable-line max-statemen
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function blockedmskfilter10d( x, mask, y ) { // eslint-disable-line max-statemen
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -347,7 +347,7 @@ function blockedmskfilter10d( x, mask, y ) { // eslint-disable-line max-statemen
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/mskfilter/lib/1d.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function mskfilter1d( x, mask, y ) {
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function mskfilter1d( x, mask, y ) {
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/mskfilter/lib/2d.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function mskfilter2d( x, mask, y ) {
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function mskfilter2d( x, mask, y ) {
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function blockedmskfilter2d( x, mask, y ) {
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -155,7 +155,7 @@ function blockedmskfilter2d( x, mask, y ) {
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ function blockedmskfilter2d( x, mask, y ) {
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -184,7 +184,7 @@ function blockedmskfilter2d( x, mask, y ) {
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/mskfilter/lib/3d.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ function mskfilter3d( x, mask, y ) {
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ function mskfilter3d( x, mask, y ) {
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function blockedmskfilter3d( x, mask, y ) {
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -176,7 +176,7 @@ function blockedmskfilter3d( x, mask, y ) {
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function blockedmskfilter3d( x, mask, y ) {
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -214,7 +214,7 @@ function blockedmskfilter3d( x, mask, y ) {
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/mskfilter/lib/4d.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function mskfilter4d( x, mask, y ) {
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ function mskfilter4d( x, mask, y ) {
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function blockedmskfilter4d( x, mask, y ) { // eslint-disable-line max-statement
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -195,7 +195,7 @@ function blockedmskfilter4d( x, mask, y ) { // eslint-disable-line max-statement
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function blockedmskfilter4d( x, mask, y ) { // eslint-disable-line max-statement
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -233,7 +233,7 @@ function blockedmskfilter4d( x, mask, y ) { // eslint-disable-line max-statement
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/mskfilter/lib/5d.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ function mskfilter5d( x, mask, y ) {
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ function mskfilter5d( x, mask, y ) {
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function blockedmskfilter5d( x, mask, y ) { // eslint-disable-line max-statement
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -214,7 +214,7 @@ function blockedmskfilter5d( x, mask, y ) { // eslint-disable-line max-statement
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* eslint-disable max-depth */
/* eslint-disable max-depth, max-len */

'use strict';

Expand Down Expand Up @@ -180,7 +180,7 @@ function blockedmskfilter5d( x, mask, y ) { // eslint-disable-line max-statement
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -252,7 +252,7 @@ function blockedmskfilter5d( x, mask, y ) { // eslint-disable-line max-statement
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/mskfilter/lib/6d.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function mskfilter6d( x, mask, y ) { // eslint-disable-line max-statements
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ function mskfilter6d( x, mask, y ) { // eslint-disable-line max-statements
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function blockedmskfilter6d( x, mask, y ) { // eslint-disable-line max-statement
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -233,7 +233,7 @@ function blockedmskfilter6d( x, mask, y ) { // eslint-disable-line max-statement
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

/* eslint-disable max-depth */
/* eslint-disable max-depth, max-len */

'use strict';

Expand Down Expand Up @@ -187,7 +187,7 @@ function blockedmskfilter6d( x, mask, y ) { // eslint-disable-line max-statement
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -271,7 +271,7 @@ function blockedmskfilter6d( x, mask, y ) { // eslint-disable-line max-statement
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/mskfilter/lib/7d.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ function mskfilter7d( x, mask, y ) { // eslint-disable-line max-statements
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ function mskfilter7d( x, mask, y ) { // eslint-disable-line max-statements
im = mask.offset;
iy = y.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function blockedmskfilter7d( x, mask, y ) { // eslint-disable-line max-statement
ox = x.offset;
om = mask.offset;

// Cache references to the input and output ndarray buffers...
// Cache references to the input, mask and output ndarray buffers...
xbuf = x.data;
mbuf = mask.data;
ybuf = y.data;
Expand Down Expand Up @@ -252,7 +252,7 @@ function blockedmskfilter7d( x, mask, y ) { // eslint-disable-line max-statement
s0 = bsize;
j0 -= bsize;
}
// Compute index offsets for the first input and output ndarray elements in the current block...
// Compute index offsets for the first input and mask ndarray elements in the current block...
ix = ox1 + ( j0*sx[0] );
im = om1 + ( j0*sm[0] );

Expand Down
Loading

0 comments on commit f1e0a81

Please sign in to comment.