Selaa lähdekoodia

typo

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@49657 15284696-431f-4ddb-bdfa-cd5b030d7da7
Hamish Bowman 13 vuotta sitten
vanhempi
commit
a591fee1b6
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      lib/gmath/lu.c

+ 2 - 2
lib/gmath/lu.c

@@ -13,7 +13,7 @@
  * \param indx int *
  * \param d double *
  *
- * \retrun 0 on singular matrix, 1 on success
+ * \return 0 on singular matrix, 1 on success
  */
 int G_ludcmp(double **a, int n, int *indx, double *d)
 {
@@ -97,7 +97,7 @@ int G_ludcmp(double **a, int n, int *indx, double *d)
  * \param indx int *
  * \param b double []
  *
- * \retrun void
+ * \return void
  */
 void G_lubksb(double **a, int n, int *indx, double b[])
 {