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 năm trước cách đây
mục cha
commit
8dd61b6265
3 tập tin đã thay đổi với 7 bổ sung7 xóa
  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 */
 	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);
     }

+ 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 */
     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 @@ N_compute_gradient_field_components_3d(N_gradient_field_3d * field,
     /*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++)

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