From 1fbfa46b10aface1ce1025a21c3443bd89a26e01 Mon Sep 17 00:00:00 2001 From: rrbharath Date: Sat, 27 Jun 2026 00:04:44 -0400 Subject: [PATCH] chore(spelling): fix spelling transpose --- src/function/matrix/transpose.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)