diff --git a/src/function/matrix/transpose.js b/src/function/matrix/transpose.js index 436add4e9a..1ce627e89c 100644 --- a/src/function/matrix/transpose.js +++ b/src/function/matrix/transpose.js @@ -124,7 +124,7 @@ export const createTranspose = /* #__PURE__ */ factory(name, dependencies, ({ ty } // cumulative sum let sum = 0 - // initialize cptr with the cummulative sum of row counts + // initialize cptr with the cumulative sum of row counts for (let i = 0; i < rows; i++) { // update cptr cptr.push(sum)