From 86f0c971290bb85921b141c9994d79a9902787d8 Mon Sep 17 00:00:00 2001 From: Lumi Pakkanen Date: Wed, 17 Jul 2024 15:09:38 +0300 Subject: [PATCH] Fix a minor typedoc typo --- src/hnf.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hnf.ts b/src/hnf.ts index 4e4a686..1de8ead 100644 --- a/src/hnf.ts +++ b/src/hnf.ts @@ -163,7 +163,7 @@ export function hnf(A: T[][]): T[][] { /** * Prune rows filled with falsy values from a 2-D matrix. - * @param A: Matrix to prune in-place. + * @param A Matrix to prune in-place. */ export function pruneZeroRows(A: any[][]) { for (let i = 0; i < A.length; ++i) {