Browse Source

parser msg: clarify which feature type is meant

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@59324 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 11 years ago
parent
commit
bb8a0dfc0a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/gis/parser_standard_options.c

+ 2 - 2
lib/gis/parser_standard_options.c

@@ -458,7 +458,7 @@ struct Option *G_define_standard_option(int opt)
 	Opt->multiple = YES;
 	Opt->answer = "point,line,boundary,centroid,area";
 	Opt->options = "point,line,boundary,centroid,area";
-	Opt->description = _("Feature type");
+	Opt->description = _("Input feature type");
 	break;
     case G_OPT_V3_TYPE:
 	Opt->key = "type";
@@ -467,7 +467,7 @@ struct Option *G_define_standard_option(int opt)
 	Opt->multiple = YES;
 	Opt->answer = "point,line,boundary,centroid,area,face,kernel";
 	Opt->options = "point,line,boundary,centroid,area,face,kernel";
-	Opt->description = _("Feature type");
+	Opt->description = _("Input feature type");
 	break;
     case G_OPT_V_FIELD:
 	Opt->key = "layer";