Skip to content

Commit

Permalink
added missing param descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
neteler committed Oct 10, 2019
1 parent 612576e commit a7c83d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions grass7/vector/v.surf.mass/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,14 @@ int main(int argc, char *argv[])
iter_opt->type = TYPE_INTEGER;
iter_opt->answer = "100";
iter_opt->required = NO;
iter_opt->description = _("Maximum number of iterations");

threshold_opt = G_define_option();
threshold_opt->key = "threshold";
threshold_opt->type = TYPE_DOUBLE;
threshold_opt->answer = "1e-8";
threshold_opt->required = NO;
threshold_opt->description = _("Threshold for iterations");

memory_opt = G_define_option();
memory_opt->key = "memory";
Expand Down

0 comments on commit a7c83d6

Please sign in to comment.