Bladeren bron

spelling fixes picked up by Lintian

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@56720 15284696-431f-4ddb-bdfa-cd5b030d7da7
Hamish Bowman 12 jaren geleden
bovenliggende
commit
9b3d67482d

+ 1 - 1
raster/r.gwflow/r.gwflow.html

@@ -76,7 +76,7 @@ module rapidely grow with the size of the input maps.
 The resulting linear equation system <i>Ax = b</i> can be solved with several solvers.
 An iterative solvers with sparse and quadratic matrices support is implemented.
 The conjugate gradients method with (pcg) and without (cg) precondition.
-Aditionally a direct Cholesky solver is available. This direct solver
+Additionally a direct Cholesky solver is available. This direct solver
 only work with normal quadratic matrices, so be careful using them with large maps 
 (maps of size 10.000 cells will need more than one gigabyte of RAM).
 Always prefer a sparse matrix solver.

+ 2 - 2
raster/r.li/r.li.daemon/r.li.daemon.html

@@ -15,7 +15,7 @@
 <h2>DESCRIPTION</h2>
 
 <em>r.li.daemon</em> provides support for landscape index calculations on raster
-maps. It hides the managment of areas, defined using <a href="r.li.setup.html">r.li.setup</a>
+maps. It hides the management of areas, defined using <a href="r.li.setup.html">r.li.setup</a>
 command. It is not used like a standalone program, but its functions are 
 a library used by all <em>r.li.[index]</em> commands.<br>
 This description is a tutorial for new index definition. <br><br>
@@ -64,7 +64,7 @@ RLI_get_cell_row(int, int, area_des)
 RLI_get_fcell_row(int, int, area_des)
 RLI_get_dcell_row(int, int, area_des)
 </pre></div><br>
-to use an ad hoc build memory managment developed to speed up the system.
+to use an ad hoc build memory management developed to speed up the system.
 The documentation is in doxygen files.
 
 <h2>SEE ALSO</h2>

+ 1 - 1
vector/v.clean/main.c

@@ -106,7 +106,7 @@ int main(int argc, char *argv[])
 		 "point shared between 2 and more polygons where angles of segments are different"),
 	       _("remove vertices in threshold from lines and boundaries, "
 		 "boundary is pruned only if topology is not damaged (new intersection, "
-		 "changed attachement of centroid), first and last segment of the boundary "
+		 "changed attachment of centroid), first and last segment of the boundary "
 		 "is never changed"),
 	       _("remove small areas, the longest boundary with adjacent area is removed"),
 	       _("remove all lines or boundaries of zero length, threshold is ignored"),

+ 1 - 1
vector/v.clean/prune.c

@@ -199,7 +199,7 @@ prune(struct Map_info *Out, int otype, double thresh, struct Map_info *Err)
 
 	    if (left_new != left_old || right_new != right_old) {
 		G_debug(3,
-			"The pruned boundary changes attachement of centroid -> not pruned");
+			"The pruned boundary changes attachment of centroid -> not pruned");
 		Vect_rewrite_line(Out, newline, type, Points, Cats);
 		if (Err) {
 		    Vect_delete_line(Err, newline_err);

+ 1 - 1
vector/v.generalize/misc.c

@@ -283,7 +283,7 @@ int check_topo(struct Map_info *Out, int line, struct line_pnts *APoints,
 
     if (left_new != left_old || right_new != right_old) {
 	G_debug(3,
-		"The modified boundary changes attachement of centroid -> not modified");
+		"The modified boundary changes attachment of centroid -> not modified");
 	Vect_rewrite_line(Out, newline, GV_BOUNDARY, APoints, Cats);
 	return 0;
     }

+ 2 - 2
vector/v.overlay/v.overlay.html

@@ -37,11 +37,11 @@ number. The original column names have a prefix (<em>a_</em> and
 <em>b_</em>) corresponding to <em>ainput</em> and <em>binput</em> map.
 <p>
 If the second number of the <em>olayer</em> option is > 0, then the 
-categories of <em>ainput</em> in layer <em>alayer</em> are transfered to
+categories of <em>ainput</em> in layer <em>alayer</em> are transferred to
 the output layer with the second number.
 <p>
 If the third number of the <em>olayer</em> option is > 0, then the 
-categories of <em>binput</em> in layer <em>blayer</em> are transfered to
+categories of <em>binput</em> in layer <em>blayer</em> are transferred to
 the output layer with the third number.
 
 <h2>NOTES</h2>