[GRASS-SVN] r61248 - grass/branches/releasebranch_7_0/raster/r.series.interp
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Jul 13 14:31:23 PDT 2014
Author: neteler
Date: 2014-07-13 14:31:22 -0700 (Sun, 13 Jul 2014)
New Revision: 61248
Modified:
grass/branches/releasebranch_7_0/raster/r.series.interp/main.c
Log:
r.series.interp: Fixed command line description (partial backport of r61239)
Modified: grass/branches/releasebranch_7_0/raster/r.series.interp/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.series.interp/main.c 2014-07-13 16:30:53 UTC (rev 61247)
+++ grass/branches/releasebranch_7_0/raster/r.series.interp/main.c 2014-07-13 21:31:22 UTC (rev 61248)
@@ -80,7 +80,7 @@
parm.infile = G_define_standard_option(G_OPT_F_INPUT);
parm.infile->key = "infile";
- parm.infile->description = _("Input file with an input raster map name and data point position per line,"
+ parm.infile->description = _("Input file with one input raster map name and data point position per line,"
" field separator between name and sample point is |");
parm.infile->required = NO;
@@ -97,7 +97,7 @@
parm.outfile = G_define_standard_option(G_OPT_F_INPUT);
parm.outfile->key = "outfile";
- parm.outfile->description = _("Input infile with an output raster map name and sample point position per line,"
+ parm.outfile->description = _("Input file with one output raster map name and sample point position per line,"
" field separator between name and sample point is |");
parm.outfile->required = NO;
More information about the grass-commit
mailing list