Browse Source

spelling (merge from devbr6)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@37526 15284696-431f-4ddb-bdfa-cd5b030d7da7
Hamish Bowman 16 years ago
parent
commit
8dd61b6265
3 changed files with 7 additions and 7 deletions
  1. 1 1
      display/d.nviz/main.c
  2. 5 5
      lib/gpde/N_gradient_calc.c
  3. 1 1
      lib/gpde/gpdelib.dox

+ 1 - 1
display/d.nviz/main.c

@@ -271,7 +271,7 @@ int main(int argc, char *argv[])
 	buf[strlen(outfile) - 6] = '\0';	/* skip extension */
 	buf[strlen(outfile) - 6] = '\0';	/* skip extension */
 	strcat(buf, ".kanim");
 	strcat(buf, ".kanim");
 	fprintf(fp, "\n## The following saves the animation to a format\n");
 	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, "SendScriptLine \"Nprint_keys %s\"\n", buf);
 	fprintf(fp, "puts \"Saving Key Frame file %s\"\n", buf);
 	fprintf(fp, "puts \"Saving Key Frame file %s\"\n", buf);
     }
     }

+ 5 - 5
lib/gpde/N_gradient_calc.c

@@ -263,10 +263,10 @@ N_compute_gradient_field_components_2d(N_gradient_field_2d * field,
     /*Check the array sizes */
     /*Check the array sizes */
     if (x->cols != cols || x->rows != rows)
     if (x->cols != cols || x->rows != rows)
 	G_fatal_error
 	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)
     if (y->cols != cols || y->rows != rows)
 	G_fatal_error
 	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 (j = 0; j < rows; j++)
 	for (i = 0; i < cols; i++) {
 	for (i = 0; i < cols; i++) {
@@ -604,13 +604,13 @@ N_compute_gradient_field_components_3d(N_gradient_field_3d * field,
     /*Check the array sizes */
     /*Check the array sizes */
     if (x->cols != cols || x->rows != rows || x->depths != depths)
     if (x->cols != cols || x->rows != rows || x->depths != depths)
 	G_fatal_error
 	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)
     if (y->cols != cols || y->rows != rows || y->depths != depths)
 	G_fatal_error
 	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)
     if (z->cols != cols || z->rows != rows || z->depths != depths)
 	G_fatal_error
 	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 (k = 0; k < depths; k++)
 	for (j = 0; j < rows; j++)
 	for (j = 0; j < rows; j++)

+ 1 - 1
lib/gpde/gpdelib.dox

@@ -55,7 +55,7 @@ The principle to create and solve a linear equation systems with this library:
 3.) Solve the linear equation system with the gauss, lu, jacobi, sor, cg or bicgstab method
 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
     - always prefer the iterative krylov-space methods for solving
     - if the linear equation systems are in a bad condition try the jacobian solver
     - 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
 4.) Write the result back as raster/volume map
 \endverbatim
 \endverbatim