Skip to content

Commit db2a4bd

Browse files
committed
Fix typo
1 parent fd8bccf commit db2a4bd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+44
-44
lines changed

lib/node_modules/@stdlib/math/strided/special/abs/test/test.abs.js

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

lib/node_modules/@stdlib/math/strided/special/abs/test/test.abs.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 Float64Array( 10 );
112112
var y = new Float64Array( x.length );
113-
strided( x.lenth, value, 1, y, 1 );
113+
strided( x.length, value, 1, y, 1 );
114114
};
115115
}
116116
});

lib/node_modules/@stdlib/math/strided/special/abs/test/test.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ tape( 'the function throws an error if provided a second argument which is not a
100100
return function badValue() {
101101
var x = new Float64Array( 10 );
102102
var y = new Float64Array( x.length );
103-
strided( x.lenth, value, 1, 0, y, 1, 0 );
103+
strided( x.length, value, 1, 0, y, 1, 0 );
104104
};
105105
}
106106
});

lib/node_modules/@stdlib/math/strided/special/abs/test/test.ndarray.native.js

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

lib/node_modules/@stdlib/math/strided/special/abs2/test/test.abs2.js

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

lib/node_modules/@stdlib/math/strided/special/abs2/test/test.abs2.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 Float64Array( 10 );
112112
var y = new Float64Array( x.length );
113-
strided( x.lenth, value, 1, y, 1 );
113+
strided( x.length, value, 1, y, 1 );
114114
};
115115
}
116116
});

lib/node_modules/@stdlib/math/strided/special/abs2/test/test.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ tape( 'the function throws an error if provided a second argument which is not a
100100
return function badValue() {
101101
var x = new Float64Array( 10 );
102102
var y = new Float64Array( x.length );
103-
strided( x.lenth, value, 1, 0, y, 1, 0 );
103+
strided( x.length, value, 1, 0, y, 1, 0 );
104104
};
105105
}
106106
});

lib/node_modules/@stdlib/math/strided/special/abs2/test/test.ndarray.native.js

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

lib/node_modules/@stdlib/math/strided/special/cbrt/test/test.cbrt.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 Float64Array( 10 );
108108
var y = new Float64Array( 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/math/strided/special/cbrt/test/test.cbrt.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 Float64Array( 10 );
113113
var y = new Float64Array( x.length );
114-
strided( x.lenth, value, 1, y, 1 );
114+
strided( x.length, value, 1, y, 1 );
115115
};
116116
}
117117
});

0 commit comments

Comments
 (0)