[GRASS-SVN] r37517 - in grass/branches/develbranch_6: display/d.nviz lib/gpde

svn_grass at osgeo.org svn_grass at osgeo.org
Tue May 26 13:43:43 EDT 2009


Author: hamish
Date: 2009-05-26 13:43:43 -0400 (Tue, 26 May 2009)
New Revision: 37517

Modified:
   grass/branches/develbranch_6/display/d.nviz/main.c
   grass/branches/develbranch_6/lib/gpde/N_gradient_calc.c
   grass/branches/develbranch_6/lib/gpde/gpdelib.dox
Log:
spelling

Modified: grass/branches/develbranch_6/display/d.nviz/main.c
===================================================================
--- grass/branches/develbranch_6/display/d.nviz/main.c	2009-05-26 17:07:22 UTC (rev 37516)
+++ grass/branches/develbranch_6/display/d.nviz/main.c	2009-05-26 17:43:43 UTC (rev 37517)
@@ -340,7 +340,7 @@
 	buf[strlen(outfile) - 6] = '\0';	/* skip extension */
 	strcat(buf, ".kanim");
 	fprintf(fp, "\n## The following saves the animation to a format\n");
-	fprintf(fp, "## suitable for editting with the kanimator panel\n");
+	fprintf(fp, "## suitable for editing with the kanimator panel\n");
 	fprintf(fp, "SendScriptLine \"Nprint_keys %s\"\n", buf);
 	fprintf(fp, "puts \"Saving Key Frame file %s\"\n", buf);
     }

Modified: grass/branches/develbranch_6/lib/gpde/N_gradient_calc.c
===================================================================
--- grass/branches/develbranch_6/lib/gpde/N_gradient_calc.c	2009-05-26 17:07:22 UTC (rev 37516)
+++ grass/branches/develbranch_6/lib/gpde/N_gradient_calc.c	2009-05-26 17:43:43 UTC (rev 37517)
@@ -263,10 +263,10 @@
     /*Check the array sizes */
     if (x->cols != cols || x->rows != rows)
 	G_fatal_error
-	    ("N_compute_gradient_components_2d: the size of the x array dont fit the gradient field size");
+	    ("N_compute_gradient_components_2d: the size of the x array doesn't fit the gradient field size");
     if (y->cols != cols || y->rows != rows)
 	G_fatal_error
-	    ("N_compute_gradient_components_2d: the size of the y array dont fit the gradient field size");
+	    ("N_compute_gradient_components_2d: the size of the y array doesn't fit the gradient field size");
 
     for (j = 0; j < rows; j++)
 	for (i = 0; i < cols; i++) {
@@ -604,13 +604,13 @@
     /*Check the array sizes */
     if (x->cols != cols || x->rows != rows || x->depths != depths)
 	G_fatal_error
-	    ("N_compute_gradient_components_3d: the size of the x array dont fit the gradient field size");
+	    ("N_compute_gradient_components_3d: the size of the x array doesn't fit the gradient field size");
     if (y->cols != cols || y->rows != rows || y->depths != depths)
 	G_fatal_error
-	    ("N_compute_gradient_components_3d: the size of the y array dont fit the gradient field size");
+	    ("N_compute_gradient_components_3d: the size of the y array doesn't fit the gradient field size");
     if (z->cols != cols || z->rows != rows || z->depths != depths)
 	G_fatal_error
-	    ("N_compute_gradient_components_3d: the size of the z array dont fit the gradient field size");
+	    ("N_compute_gradient_components_3d: the size of the z array doesn't fit the gradient field size");
 
     for (k = 0; k < depths; k++)
 	for (j = 0; j < rows; j++)

Modified: grass/branches/develbranch_6/lib/gpde/gpdelib.dox
===================================================================
--- grass/branches/develbranch_6/lib/gpde/gpdelib.dox	2009-05-26 17:07:22 UTC (rev 37516)
+++ grass/branches/develbranch_6/lib/gpde/gpdelib.dox	2009-05-26 17:43:43 UTC (rev 37517)
@@ -55,7 +55,7 @@
 3.) Solve the linear equation system with the gauss, lu, jacobi, sor, cg or bicgstab method
     - always prefer the iterative krylov-space methods for solving
     - if the linear equation systems are in a bad condition try the jacobian solver
-    - the available direct solvers dont support sparse matrices
+    - the available direct solvers don't support sparse matrices
 4.) Write the result back as raster/volume map
 \endverbatim
 



More information about the grass-commit mailing list