Skip to content

Commit

Permalink
fix types in jsdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
dvd101x committed Jan 26, 2025
1 parent 7e056f7 commit 34e306e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/array.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { deepStrictEqual } from './object.js'
* This function checks the size of the first entry, it does not validate
* whether all dimensions match. (use function `validate` for that)
* @param {Array} x
* @return {Number[]} size
* @return {number[]} size
*/
export function arraySize (x) {
const s = []
Expand Down Expand Up @@ -834,7 +834,7 @@ export function broadcastArrays (...arrays) {
/**
* Stretches a matrix up to a certain size in a certain dimension
* @param {Array} arrayToStretch
* @param {number} sizeToStretch
* @param {number[]} sizeToStretch
* @param {number} dimToStretch
* @returns {Array} The stretched array
*/
Expand Down

0 comments on commit 34e306e

Please sign in to comment.