Skip to content
Merged
Changes from 2 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
2 changes: 1 addition & 1 deletion 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
Loading