Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/array/filled/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@

// MAIN //

/**

Check failure on line 92 in lib/node_modules/@stdlib/array/filled/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

"ComplexArray" type definition should be "Complex64Array"
* Creates a filled array.
*
* @param {*} [value] - fill value
Expand All @@ -100,7 +100,7 @@
* @throws {TypeError} must provide a recognized data type
* @throws {TypeError} must provide a length, typed array, array-like object, buffer, or iterable
* @throws {Error} creating a generic array from an `ArrayBuffer` is not supported
* @returns {(TypedArray|Array|Complex64Array)} array or typed array
* @returns {(TypedArray|Array|ComplexArray)} array or typed array
*
* @example
* var arr = filledarray();
Expand Down Expand Up @@ -178,7 +178,7 @@
* var arr = filledarray( 1, buf, 8, 2, 'int32' );
* // returns <Int32Array>[ 1, 1 ]
*/
function filledarray() {
function filledarray() { // eslint-disable-line stdlib/jsdoc-typedef-typos
var value;
var nargs;
var dtype;
Expand Down
Loading