Browse Source

various spelling errors fixed

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@68015 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 9 years ago
parent
commit
9a9b8230ed
51 changed files with 63 additions and 63 deletions
  1. 3 3
      gui/wxpython/dbmgr/base.py
  2. 1 1
      gui/wxpython/docs/wxGUI.toolboxes.html
  3. 1 1
      gui/wxpython/gis_set.py
  4. 1 1
      gui/wxpython/gmodeler/dialogs.py
  5. 1 1
      gui/wxpython/gmodeler/frame.py
  6. 1 1
      imagery/i.fft/i.fft.html
  7. 1 1
      lib/db/dbmi_base/login.c
  8. 1 1
      lib/db/dbmi_base/string.c
  9. 1 1
      lib/raster/cats.c
  10. 1 1
      lib/raster/gdal.c
  11. 1 1
      lib/vector/Vlib/build_pg.c
  12. 1 1
      lib/vector/Vlib/header.c
  13. 2 2
      lib/vector/Vlib/open_pg.c
  14. 1 1
      lib/vector/Vlib/write_pg.c
  15. 3 3
      lib/vector/vectorlib_pg.dox
  16. 1 1
      locale/po/grassmods_ar.po
  17. 1 1
      locale/po/grassmods_cs.po
  18. 1 1
      locale/po/grassmods_de.po
  19. 1 1
      locale/po/grassmods_el.po
  20. 1 1
      locale/po/grassmods_es.po
  21. 1 1
      locale/po/grassmods_fi.po
  22. 1 1
      locale/po/grassmods_fr.po
  23. 1 1
      locale/po/grassmods_it.po
  24. 1 1
      locale/po/grassmods_ja.po
  25. 1 1
      locale/po/grassmods_ko.po
  26. 1 1
      locale/po/grassmods_lv.po
  27. 1 1
      locale/po/grassmods_pl.po
  28. 1 1
      locale/po/grassmods_pt.po
  29. 1 1
      locale/po/grassmods_pt_br.po
  30. 1 1
      locale/po/grassmods_ro.po
  31. 1 1
      locale/po/grassmods_ru.po
  32. 1 1
      locale/po/grassmods_sl.po
  33. 1 1
      locale/po/grassmods_th.po
  34. 1 1
      locale/po/grassmods_tr.po
  35. 1 1
      locale/po/grassmods_vi.po
  36. 1 1
      locale/po/grassmods_zh.po
  37. 1 1
      raster/r.category/r.category.html
  38. 1 1
      raster/r.lake/main.c
  39. 2 2
      raster/r.param.scale/feature.c
  40. 2 2
      raster/r.param.scale/param.c
  41. 1 1
      raster/r.param.scale/param.h
  42. 1 1
      raster/r.resamp.bspline/r.resamp.bspline.html
  43. 2 2
      raster/r.ros/main.c
  44. 1 1
      raster/r.sim/r.sim.sediment/r.sim.sediment.html
  45. 3 3
      raster/r.sim/r.sim.water/r.sim.water.html
  46. 2 2
      raster/r.what/r.what.html
  47. 2 2
      raster/rasterintro.html
  48. 1 1
      vector/v.build/main.c
  49. 1 1
      vector/v.build/v.build.html
  50. 1 1
      vector/v.clean/v.clean.html
  51. 1 1
      vector/v.surf.bspline/v.surf.bspline.html

+ 3 - 3
gui/wxpython/dbmgr/base.py

@@ -1522,11 +1522,11 @@ class DbMgrBrowsePage(DbMgrNotebookBase):
         table    = self.dbMgrData['mapDBInfo'].layers[self.selLayer]["table"]
         key      = self.dbMgrData['mapDBInfo'].layers[self.selLayer]["key"]
         
-        indeces = []
+        indices = []
         # collect SQL statements
         while item != -1:
             index = dlist.itemIndexMap[item]
-            indeces.append(index)
+            indices.append(index)
             
             cat = dlist.itemCatsMap[index]
             
@@ -1557,7 +1557,7 @@ class DbMgrBrowsePage(DbMgrNotebookBase):
         
         i = 0
         for index in indexTemp:
-            if index in indeces:
+            if index in indices:
                 continue
             dlist.itemIndexMap.append(i)
             dlist.itemDataMap[i] = dataTemp[index]

+ 1 - 1
gui/wxpython/docs/wxGUI.toolboxes.html

@@ -127,7 +127,7 @@ where we omitted the two toolboxes:</p>
 
 <h3>Creating custom toolbox</h3>
 
-<p>In this example we create a new toolbox <em>Favorites</em> containg
+<p>In this example we create a new toolbox <em>Favorites</em> containing
 existing GRASS module and toolbox, custom module
 created by the user and addon module.
 The <tt>toolboxes.xml</tt> file contains following lines:</p>

+ 1 - 1
gui/wxpython/gis_set.py

@@ -1054,7 +1054,7 @@ class GListBox(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin):
         """Load data into list
         
         :param choices: list of item
-        :param disabled: list of indeces of non-selectable items
+        :param disabled: list of indices of non-selectable items
         """
         idx = 0
         for item in choices:

+ 1 - 1
gui/wxpython/gmodeler/dialogs.py

@@ -891,7 +891,7 @@ class ItemListCtrl(ModelListCtrl):
             self.DeleteItem(item)
             del self.itemDataMap[item]
             
-            action = model.GetItem(item+1) # action indeces starts at 1
+            action = model.GetItem(item+1) # action indices starts at 1
             if not action:
                 item = self.GetFirstSelected()
                 continue

+ 1 - 1
gui/wxpython/gmodeler/frame.py

@@ -1634,7 +1634,7 @@ class ItemPanel(wx.Panel):
         self.list.OnReload(None)
 
     def _getSelectedItems(self):
-        """Get list of selected items, indeces start at 0"""
+        """Get list of selected items, indices start at 0"""
         items = []
         current = -1
         while True:

+ 1 - 1
imagery/i.fft/i.fft.html

@@ -36,7 +36,7 @@ d.rast lsat7_2002_70.real
 d.rast lsat7_2002_70.imag
 </pre></div>
 
-<h2>REFERNCES</h2>
+<h2>REFERENCES</h2>
 
 <ul>
 <li> M. Frigo and S. G. Johnson (1998): "FFTW: An Adaptive Software Architecture

+ 1 - 1
lib/db/dbmi_base/login.c

@@ -266,7 +266,7 @@ int db_set_login(const char *driver, const char *database, const char *user,
   \param password password string
   \param host host name
   \param port
-  \param overwrite TRUE to overwrite exising connections
+  \param overwrite TRUE to overwrite existing connections
   
   \return DB_OK on success
   \return DB_FAILED on failure

+ 1 - 1
lib/db/dbmi_base/string.c

@@ -135,7 +135,7 @@ int db_enlarge_string(dbString * x, int len)
 
   \param x pointer to dbString
 
-  \return pointer to buffer containg string
+  \return pointer to buffer containing string
 */
 char *db_get_string(const dbString * x)
 {

+ 1 - 1
lib/raster/cats.c

@@ -50,7 +50,7 @@
  *
  *   sprintf(buff,"Elevation: %.2f to %.2f feet", num*5.0+1000, num*5.0*1005)
  *
- * Note: while both the format and coefficent lins must be present
+ * Note: while both the format and coefficient lines must be present
  *       a blank line for the fmt will effectively suppress automatic
  *       label generation
  *

+ 1 - 1
lib/raster/gdal.c

@@ -579,7 +579,7 @@ void Rast_close_gdal_link(struct GDAL_link *gdal)
 }
 
 /*!
-  \brief Close exising GDAL link and write out data
+  \brief Close existing GDAL link and write out data
 
   \param gdal pointer to GDAL_link to be closed
 

+ 1 - 1
lib/vector/Vlib/build_pg.c

@@ -175,7 +175,7 @@ int build_topo(struct Map_info *Map, int build)
              * mode, before building native topology read nodes from
              * PostGIS Topology */
 
-            /* clean-up spatial a category indeces */
+            /* clean-up spatial a category indices */
             dig_free_plus(&(Map->plus));
             dig_init_plus(&(Map->plus));
             plus->Spidx_new = TRUE;   

+ 1 - 1
lib/vector/Vlib/header.c

@@ -393,7 +393,7 @@ int Vect_set_map_date(struct Map_info *Map, const char *str)
 
    \param Map pointer to Map_info structure
 
-   \return string containg a date
+   \return string containing a date
  */
 const char *Vect_get_map_date(const struct Map_info *Map)
 {

+ 2 - 2
lib/vector/Vlib/open_pg.c

@@ -331,9 +331,9 @@ int Vect__open_topo_pg(struct Map_info *Map, int head_only, int update)
         return 1;
     
     /* free and init plus structure, update spatial and category
-     * indeces  */
+     * indices  */
     dig_init_plus(plus);
-    plus->Spidx_new = TRUE;        /* force building spatial and category indeces */
+    plus->Spidx_new = TRUE;        /* force building spatial and category indices */
     plus->update_cidx = TRUE; 
     Map->support_updated = FALSE;  /* don't write support files */
 

+ 1 - 1
lib/vector/Vlib/write_pg.c

@@ -755,7 +755,7 @@ int create_table(struct Format_info_pg *pg_info)
         return -1;
     }
     
-    /* create indeces
+    /* create indices
         - GV_KEY_COLUMN
         - geometry column
     */

+ 3 - 3
lib/vector/vectorlib_pg.dox

@@ -28,7 +28,7 @@ API. They are internally used by the vector library when accessing
 PostGIS data. The programmer should use higher level functions
 instead.
 
-- Vect_open_old() to open exising vector map (ie. PostGIS table when using GRASS-PostGIS data provider)
+- Vect_open_old() to open existing vector map (ie. PostGIS table when using GRASS-PostGIS data provider)
 - Vect_open_new() to create new vector map
 - Vect_close() to close vector map
 
@@ -38,7 +38,7 @@ instead.
 
 - Vect_write_line() to write a new feature
 - Vect_delete_line() to delete existing feature
-- Vect_rewrite_line() to modify exising feature
+- Vect_rewrite_line() to modify existing feature
 
 - Vect_build() to build (pseudo-)topology
 
@@ -74,7 +74,7 @@ access is provided by functions starting with <tt>V2_</tt> prefix.
 - V2_write_line_sfa() - write new simple feature
 - V2_write_line_pg() - write new topological element in PostGIS Topology schema
 
-\par Delete exising feature or topological element
+\par Delete existing feature or topological element
 
 - V1_delete_line_pg()
 - V2_delete_line_sfa() - delete simple feature

+ 1 - 1
locale/po/grassmods_ar.po

@@ -41940,7 +41940,7 @@ msgid ""
 msgstr "خريطة مخرجة حيث ستكتب النقاط"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_cs.po

@@ -42356,7 +42356,7 @@ msgstr ""
 "Název výstupní vektorové vrstvy, do které budou zapsány chybné prvky vektoru"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 "Sestavit topologii nebo vypsat informace o tolopogii a indexech na "
 "standardní výstup"

+ 1 - 1
locale/po/grassmods_de.po

@@ -42518,7 +42518,7 @@ msgstr ""
 
 #: ../vector/v.build/main.c:61
 #, fuzzy
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 "Erzeuge Topologie oder schreibe die Topologie oder den räumlichen Index nach "
 "stdout."

+ 1 - 1
locale/po/grassmods_el.po

@@ -40289,7 +40289,7 @@ msgid ""
 msgstr "Όνομα εξαγόμενου διανυσματικού χάρτη"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_es.po

@@ -42646,7 +42646,7 @@ msgstr ""
 "Nombre del mapa vectorial donde se escriben elementos vectoriales erróneos"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr "Construir topología o volcar topología o índices a salida estandar"
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_fi.po

@@ -38640,7 +38640,7 @@ msgid ""
 msgstr ""
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_fr.po

@@ -44590,7 +44590,7 @@ msgid ""
 msgstr "Nom de la couche en sortie où les erreurs seront écrites"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_it.po

@@ -41743,7 +41743,7 @@ msgid ""
 msgstr "Nome della mappa vettoriale di output su cui scrivere i segmenti"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_ja.po

@@ -41766,7 +41766,7 @@ msgstr "誤ったベクトルフィーチャーが書き込まれているベク
 
 #: ../vector/v.build/main.c:61
 #, fuzzy
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 "トポロジーまたはダンプトポロジーまたは空間インデックスをstdoutに作成します  "
 

+ 1 - 1
locale/po/grassmods_ko.po

@@ -40516,7 +40516,7 @@ msgid ""
 msgstr "출력할 격자지도"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_lv.po

@@ -41816,7 +41816,7 @@ msgid ""
 msgstr ""
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_pl.po

@@ -41849,7 +41849,7 @@ msgid ""
 msgstr "Nazwa wyjściowej wektorowej mapy punktów"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_pt.po

@@ -43025,7 +43025,7 @@ msgid ""
 msgstr "Mapa de saída no qual os erros serão gravados"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_pt_br.po

@@ -42951,7 +42951,7 @@ msgid ""
 msgstr "Mapa de saída no qual os erros serão gravados"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_ro.po

@@ -39337,7 +39337,7 @@ msgid ""
 msgstr ""
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_ru.po

@@ -42531,7 +42531,7 @@ msgstr "Имя векторного слоя, куда записываются
 
 #: ../vector/v.build/main.c:61
 #, fuzzy
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 "Построить топологию или вывести топологию или пространственный индекс в "
 "stdout"

+ 1 - 1
locale/po/grassmods_sl.po

@@ -42233,7 +42233,7 @@ msgid ""
 msgstr "Ime izhodnega vektorskega sloja"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_th.po

@@ -42069,7 +42069,7 @@ msgstr "ชื่อของ แผนที่เชิงเส้น ที
 
 #: ../vector/v.build/main.c:61
 #, fuzzy
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr "สร้าง topology หรือ dump topology หรือ spatial index ไปที่ stdout"
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_tr.po

@@ -41281,7 +41281,7 @@ msgid ""
 msgstr "Hatalı vektör objelerinin yazılacağı vektör haritanın adı"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

+ 1 - 1
locale/po/grassmods_vi.po

@@ -42515,7 +42515,7 @@ msgstr "Tên của bản đồ vec-tơ dùng để lưu các đối tượng vec
 
 #: ../vector/v.build/main.c:61
 #, fuzzy
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 "Xây dựng tôpô hoặc 'đổ' tôpô hoặc chỉ mục không gian vào đầu ra tiêu chuẩn"
 

+ 1 - 1
locale/po/grassmods_zh.po

@@ -42146,7 +42146,7 @@ msgid ""
 msgstr "用来存放错误信息的输出地图的名称"
 
 #: ../vector/v.build/main.c:61
-msgid "Build topology or dump topology or indeces to standard output"
+msgid "Build topology or dump topology or indices to standard output"
 msgstr ""
 
 #: ../vector/v.build/main.c:65

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

@@ -90,7 +90,7 @@ string for category "num":
 <p>
 <tt>sprintf(buff,"Elevation: %.2f to %.2f feet", num*5.0+1000, num*5.0*1005)</tt>
 
-<p>Note: while both the format and coefficent lines must be present
+<p>Note: while both the format and coefficient lines must be present
       a blank line for the format string will effectively suppress
       automatic label generation.
 <!--

+ 1 - 1
raster/r.lake/main.c

@@ -283,7 +283,7 @@ int main(int argc, char *argv[])
     else
 	out_fd = Rast_open_new(seedmap, 1);
 
-    /* More pases are renudant. Real pases count is controled by altered cell count. */
+    /* More pases are renudant. Real pases count is controlled by altered cell count. */
     pases = (int)(rows * cols) / 2;
 
     G_debug(1,

+ 2 - 2
raster/r.param.scale/feature.c

@@ -6,7 +6,7 @@
 
 /***                              feature()                                ***/
 
-/***     Returns a terrain feature based on the 6 quadratic coefficents    ***/
+/***     Returns a terrain feature based on the 6 quadratic coefficients    ***/
 
 /***	 that define a local trend surface. 			    	   ***/
 
@@ -21,7 +21,7 @@
 
 
 DCELL feature(double *coeff)
-{				/* Set of six quadratic coefficents.      */
+{				/* Set of six quadratic coefficients.      */
 
     /* Quadratic function in the form of
 

+ 2 - 2
raster/r.param.scale/param.c

@@ -7,7 +7,7 @@
 /*****************************************************************************/
 /***                                                                       ***/
 /***                                param()                                ***/
-/***     Returns a terrain parameter based on the 6 quadratic coefficents  ***/
+/***     Returns a terrain parameter based on the 6 quadratic coefficients  ***/
 /***	 that define a local trend surface. 			    	   ***/
 /***     Jo Wood, Department of Geography, V2.0 15th December, 1994        ***/
 /***                                                                       ***/
@@ -19,7 +19,7 @@
 
 DCELL param(int ptype,		/* Type of terrain parameter to calculate */
 	    double *coeff)
-{				/* Set of six quadratic coefficents.        */
+{				/* Set of six quadratic coefficients.        */
 
     /* Quadratic function in the form of
 

+ 1 - 1
raster/r.param.scale/param.h

@@ -71,7 +71,7 @@ void find_obs(DCELL * z,	/* Local window of elevs.       */
 	      double *obs,	/* Observed column vector.      */
 	      double *w);	/* Weighting matrix.            */
 void find_weight(double *weight_ptr);
-DCELL feature(double *coeff);	/* Set of six quadratic coefficents.    */
+DCELL feature(double *coeff);	/* Set of six quadratic coefficients.    */
 
 /* ------ Global variables ------ */
 

+ 1 - 1
raster/r.resamp.bspline/r.resamp.bspline.html

@@ -107,7 +107,7 @@ d.histogram elev_srtm_30m_complete
 d.rast elev_srtm_30m_complete
 </pre></div>
 
-<h3>Estimation of <b>lambda</b> parameter with a cross validation proccess</h3>
+<h3>Estimation of <b>lambda</b> parameter with a cross validation process</h3>
 
 A random sample of points should be generated first with
 <em><a href="r.random.html">r.random</a></em>, and the current region should not

+ 2 - 2
raster/r.ros/main.c

@@ -159,8 +159,8 @@ int main(int argc, char *argv[])
       wn_live,			/*net live fuel (total) load */
       class_sum, moisture[4],	/*moistures of 1-h,10-h,100-h,live fuels */
       Mf_dead,			/*total moisture of dead fuels */
-      etaM_dead,		/*dead fuel misture damping coefficent */
-      etaM_live,		/*live fuel misture damping coefficent */
+      etaM_dead,		/*dead fuel misture damping coefficient */
+      etaM_live,		/*live fuel misture damping coefficient */
       xmext,			/*live fuel moisture of extinction */
       phi_ws,			/*wind and slope conbined coefficient */
       wmfd, fdmois, fined, finel;

+ 1 - 1
raster/r.sim/r.sim.sediment/r.sim.sediment.html

@@ -30,7 +30,7 @@ transport capacity limited erosion/deposition raster map
 can be viewed while the simulation continues. Sediment flow rate raster map 
 <i>sediment_flux</i> [kg/ms], and net erosion/deposition raster map [kg/m<sup>2</sup>s]
 can take longer time depending on time step and simulation time. 
-Simulation time is controled by <i>niterations</i> [minutes] parameter. 
+Simulation time is controlled by <i>niterations</i> [minutes] parameter. 
 <!-- Output files can be saved during simulation using <i>outiter</i> parameter
 defining simulation time step for writing output files. This option requires
 time series flag <i>-t</i>. Files are saved with suffix   containing

+ 3 - 3
raster/r.sim/r.sim.water/r.sim.water.html

@@ -42,7 +42,7 @@ Optionally, user can provide an overland flow infiltration rate map
 <i>infil</i> or a single value <i>infil_value</i> in [mm/hr] that control the rate of
 infiltration for the already flowing water, effectively reducing the flow depth and 
 discharge.
-Overland flow can be further controled by permeable check dams or similar type of structures,
+Overland flow can be further controlled by permeable check dams or similar type of structures,
 the user can provide a map of these structures and their permeability ratio
 in the map <i>flow_control</i> that defines the probability of particles to pass
 through the structure (the values will be 0-1).
@@ -54,7 +54,7 @@ the <i>error</i> raster map (the resulting water depth is an average, and err is
 The output vector points map <i>output_walkers</i> can be used to analyze and visualize 
 spatial distribution of walkers at different simulation times (note that 
 the resulting water depth is based on the density of these walkers). 
-<!--Number of the output walkers is controled by the <i>density</i> parameter, which controls
+<!--Number of the output walkers is controlled by the <i>density</i> parameter, which controls
 how many walkers used in simulation should be written into the output. -->
 <!-- from
 http://www.ing.unitn.it/~grass/conferences/GRASS2002/proceedings/proceedings/pdfs/Mitasova_Helena_2.pdf
@@ -64,7 +64,7 @@ analysed using the output error raster file [m]. This error is a function of the
 of particles used in the simulation and can be reduced by increasing the number of walkers
 given by parameter <i>nwalkers</i>.
 <!--(<font color="#ff0000"> toto treba upresnit/zmenit, lebo nwalk ide prec</font>). -->
-Duration of simulation is controled by the <i>niterations</i> parameter. The default value 
+Duration of simulation is controlled by the <i>niterations</i> parameter. The default value 
 is 10 minutes, reaching the steady-state may require much longer time, 
 depending on the time step, complexity of terrain, land cover and size of the area. 
 Output walker, water depth and discharge maps can be saved during simulation using 

+ 2 - 2
raster/r.what/r.what.html

@@ -42,7 +42,7 @@ r.what map=landuse96_28m,aspect coordinates=633614.08,224125.12,632972.36,225382
 
 <h3>Input coordinates given as a vector points map</h3>
 
-Coordinates can be read from exising vector points map by
+Coordinates can be read from existing vector points map by
 specifying <b>points</b> option. Other features than points or
 centroids are ignored. Example: query North Carolina county number for
 each community college:
@@ -59,7 +59,7 @@ r.what map=boundary_county_500m points=comm_colleges
 
 <h3>Input coordinates given as a vector points map, output into CSV file</h3>
 
-Coordinates can be read from exising vector points map by
+Coordinates can be read from existing vector points map by
 specifying <b>points</b> option. Other features than points or
 centroids are ignored. The output is stored in a CSV file including header
 row. Example: query North Carolina county number for each community college:

+ 2 - 2
raster/rasterintro.html

@@ -144,9 +144,9 @@ cells whose centres fall within the bounds of the region cell.
 <br>
 With <b>-w</b>, the samples are weighted according to the proportion of the
 raster cell which falls within the bounds of the region cell, so the
-result is normally unaffected by rounding error (a miniscule difference 
+result is normally unaffected by rounding error (a minuscule difference 
 in the position of the boundary results in the addition or subtraction of
-a sample weighted by a miniscule factor; also, The min and max aggregates 
+a sample weighted by a minuscule factor; also, The min and max aggregates 
 can't use weights, so <b>-w</b> has no effect for those).</li>
 
 <li> <a href="r.fillnulls.html">r.fillnulls</a> for Regularized Spline with Tension (RST) 

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

@@ -58,7 +58,7 @@ int main(int argc, char *argv[])
     opt->multiple = YES;
     opt->answer = "build";
     opt->description =
-	_("Build topology or dump topology or indeces to standard output");
+	_("Build topology or dump topology or indices to standard output");
     opt_desc = NULL;
     G_asprintf(&opt_desc,
 	       "build;%s;dump;%s;sdump;%s;cdump;%s;fdump;%s",

+ 1 - 1
vector/v.build/v.build.html

@@ -47,7 +47,7 @@ includes:
 <h3>Build topology</h3>
 
 Note that <b>option=build</b> recreates also spatial and category
-indeces, not only topology. For linked OGR layers
+indices, not only topology. For linked OGR layers
 (see <em><a href="v.external.html">v.external</a></em>) also feature
 index is created.
 

+ 1 - 1
vector/v.clean/v.clean.html

@@ -3,7 +3,7 @@
 <em>v.clean</em> allows the user to automatically fix topology of vector 
 maps. Several tools may be listed to be executed sequentially. In this
 case, also the threshold parameter requires several values to be listed
-accordingly. An error map is optionally written which stores the errorneous
+accordingly. An error map is optionally written which stores the erroneous
 geometries.
 
 <h3>Break lines/boundaries</h3>

+ 1 - 1
vector/v.surf.bspline/v.surf.bspline.html

@@ -109,7 +109,7 @@ A bilinear spline interpolation will be done with a spline step length
 of 25 map units. An interpolated raster map will be created at the
 current region resolution.
 
-<h3>Estimation of lambda_i parameter with a cross validation proccess</h3>
+<h3>Estimation of lambda_i parameter with a cross validation process</h3>
 
 <div class="code"><pre>
 v.surf.bspline -c input=point_vector