[GRASS-SVN] r50371 - grass/trunk/lib/gpde

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Jan 21 19:59:21 EST 2012


Author: huhabla
Date: 2012-01-21 16:59:20 -0800 (Sat, 21 Jan 2012)
New Revision: 50371

Modified:
   grass/trunk/lib/gpde/N_arrays_calc.c
   grass/trunk/lib/gpde/N_les_assemble.c
   grass/trunk/lib/gpde/gpdelib.dox
Log:
Typo fixes


Modified: grass/trunk/lib/gpde/N_arrays_calc.c
===================================================================
--- grass/trunk/lib/gpde/N_arrays_calc.c	2012-01-21 21:05:54 UTC (rev 50370)
+++ grass/trunk/lib/gpde/N_arrays_calc.c	2012-01-22 00:59:20 UTC (rev 50371)
@@ -275,7 +275,7 @@
 
 
 /*!
- * \brief Performe calculations with two input arrays, 
+ * \brief Perform calculations with two input arrays, 
  * the result is written to a third array.
  *
  * All arrays must have equal sizes and offsets.
@@ -703,7 +703,7 @@
 }
 
 /*!
- * \brief Performe calculations with two input arrays, 
+ * \brief Perform calculations with two input arrays, 
  * the result is written to a third array.
  *
  * All arrays must have equal sizes and offsets.

Modified: grass/trunk/lib/gpde/N_les_assemble.c
===================================================================
--- grass/trunk/lib/gpde/N_les_assemble.c	2012-01-21 21:05:54 UTC (rev 50370)
+++ grass/trunk/lib/gpde/N_les_assemble.c	2012-01-22 00:59:20 UTC (rev 50371)
@@ -571,7 +571,7 @@
     G_debug(2,
 	    "N_assemble_les_2d: starting to assemble the linear equation system");
 
-    /* At first count the number of valid cells and save the 
+    /* At first count the number of valid cells and save 
      * each number in a new 2d array. Those numbers are used 
      * to create the linear equation system.
      * */
@@ -820,7 +820,7 @@
 
 #pragma omp parallel default(shared)
     {
-	/*performe the matrix vector product and */
+	/*perform the matrix vector product and */
 	if (les->type == N_SPARSE_LES)
 	    G_math_Ax_sparse(les->Asp, dvect1, dvect2, les->rows);
 	else
@@ -1277,7 +1277,7 @@
 
 #pragma omp parallel default(shared)
     {
-	/*performe the matrix vector product and */
+	/*perform the matrix vector product and */
 	if (les->type == N_SPARSE_LES)
 	    G_math_Ax_sparse(les->Asp, dvect1, dvect2, les->rows);
 	else

Modified: grass/trunk/lib/gpde/gpdelib.dox
===================================================================
--- grass/trunk/lib/gpde/gpdelib.dox	2012-01-21 21:05:54 UTC (rev 50370)
+++ grass/trunk/lib/gpde/gpdelib.dox	2012-01-22 00:59:20 UTC (rev 50371)
@@ -209,7 +209,7 @@
 Compute the norm of two arrays<br>
 double #N_norm_array_2d (N_array_2d * array1, N_array_2d * array2, int type);
 <p>
-Performe some basic mathematical operations with two arrays<br>
+Perform some basic mathematical operations with two arrays<br>
 N_array_2d * #N_math_array_2d (N_array_2d * array1, N_array_2d * array2, N_array_2d * result, int type);
 <p>
 Convert all null values to zero<br>
@@ -279,7 +279,7 @@
 Compute the norm of two arrays<br>
 double #N_norm_array_3d (N_array_3d * array1, N_array_3d * array2, int type);
 <p>
-Performe some basic mathematical operations with two arrays<br>
+Perform some basic mathematical operations with two arrays<br>
 N_array_3d * #N_math_array_3d (N_array_3d * array1, N_array_3d * array2, N_array_3d * result, int type);
 <p>
 Convert all null values to zero<br>
@@ -592,7 +592,7 @@
 
 To compute and manage gradient and vector field data, specific data structures with access and management functions
 are implemented. Gradient and vector field data is often needed in transport calculation like solute/heat transport
-or navier stokes equations. The following  structures and functions provide a concient way to performe 
+or navier stokes equations. The following  structures and functions provide a concient way to perform
 gradient and vector field calculations.
 <p>
 



More information about the grass-commit mailing list