Skip to content

Commit 365abfe

Browse files
committed
Fix typo
1 parent 9afe2b4 commit 365abfe

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/_tools/scaffold/strided-unary/data/test/test.alias.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ tape( 'the function throws an error if provided a second argument which is not a
106106
return function badValue() {
107107
var x = new {{TYPED_ARRAY_CTOR}}( 10 );
108108
var y = new {{TYPED_ARRAY_CTOR}}( x.length );
109-
strided( x.lenth, value, 1, y, 1 );
109+
strided( x.length, value, 1, y, 1 );
110110
};
111111
}
112112
});

lib/node_modules/@stdlib/_tools/scaffold/strided-unary/data/test/test.alias.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ tape( 'the function throws an error if provided a second argument which is not a
111111
return function badValue() {
112112
var x = new {{TYPED_ARRAY_CTOR}}( 10 );
113113
var y = new {{TYPED_ARRAY_CTOR}}( x.length );
114-
strided( x.lenth, value, 1, y, 1 );
114+
strided( x.length, value, 1, y, 1 );
115115
};
116116
}
117117
});

lib/node_modules/@stdlib/_tools/scaffold/strided-unary/data/test/test.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ tape( 'the function throws an error if provided a second argument which is not a
105105
return function badValue() {
106106
var x = new {{TYPED_ARRAY_CTOR}}( 10 );
107107
var y = new {{TYPED_ARRAY_CTOR}}( x.length );
108-
strided( x.lenth, value, 1, 0, y, 1, 0 );
108+
strided( x.length, value, 1, 0, y, 1, 0 );
109109
};
110110
}
111111
});

lib/node_modules/@stdlib/_tools/scaffold/strided-unary/data/test/test.ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ tape( 'the function throws an error if provided a second argument which is not a
110110
return function badValue() {
111111
var x = new {{TYPED_ARRAY_CTOR}}( 10 );
112112
var y = new {{TYPED_ARRAY_CTOR}}( x.length );
113-
strided( x.lenth, value, 1, 0, y, 1, 0 );
113+
strided( x.length, value, 1, 0, y, 1, 0 );
114114
};
115115
}
116116
});

0 commit comments

Comments
 (0)