瀏覽代碼

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++) {