소스 검색

typo in code comment

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@49404 15284696-431f-4ddb-bdfa-cd5b030d7da7
Hamish Bowman 13 년 전
부모
커밋
2b21089a0a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/gmath/solvers_direct.c

+ 1 - 1
lib/gmath/solvers_direct.c

@@ -264,7 +264,7 @@ int G_math_cholesky_decomposition(double **A, int rows, int bandwith)
 	}
 
     }
-    /*we need to copy the lower triangle matrix to the upper trianle */
+    /* we need to copy the lower triangle matrix to the upper triangle */
 #pragma omp parallel for schedule (static) private(i, k) shared(A, rows)
     for (k = 0; k < rows; k++) {
 	for (i = k + 1; i < rows; i++) {