Skip to content

Commit

Permalink
Fix a minor typedoc typo
Browse files Browse the repository at this point in the history
  • Loading branch information
frostburn committed Jul 17, 2024
1 parent ff88720 commit 86f0c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hnf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export function hnf<T extends number | bigint>(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) {
Expand Down

0 comments on commit 86f0c97

Please sign in to comment.