[GRASS-SVN] r49404 - grass/trunk/lib/gmath

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Nov 27 23:58:36 EST 2011


Author: hamish
Date: 2011-11-27 20:58:36 -0800 (Sun, 27 Nov 2011)
New Revision: 49404

Modified:
   grass/trunk/lib/gmath/solvers_direct.c
Log:
typo in code comment

Modified: grass/trunk/lib/gmath/solvers_direct.c
===================================================================
--- grass/trunk/lib/gmath/solvers_direct.c	2011-11-28 04:10:01 UTC (rev 49403)
+++ grass/trunk/lib/gmath/solvers_direct.c	2011-11-28 04:58:36 UTC (rev 49404)
@@ -264,7 +264,7 @@
 	}
 
     }
-    /*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++) {



More information about the grass-commit mailing list