fix typos in code comments

remove duplicate words from a comment
This commit is contained in:
0tkl
2025-05-14 15:40:26 +08:00
parent a81158c446
commit 56c44c04f6
11 changed files with 22 additions and 22 deletions

View File

@@ -651,7 +651,7 @@ int sortsparse(Smatrix *sm, int n)
/*
**--------------------------------------------------------------
** Input: n = number of rows in solution matrix
** Output: returns eror code
** Output: returns error code
** Purpose: puts row indexes in ascending order in NZSUB
**--------------------------------------------------------------
*/
@@ -834,7 +834,7 @@ int linsolve(Smatrix *sm, int n)
}
} // next j
// Foward substitution
// Forward substitution
for (j = 1; j <= n; j++)
{
bj = B[j]/Aii[j];