[gnumeric] docs: fix argument help text.



commit 4ce996901fab0af07132e32a68ca61565a662bfc
Author: Morten Welinder <terra gnome org>
Date:   Mon Jun 14 08:54:15 2010 -0400

    docs: fix argument help text.

 plugins/fn-math/functions.c   |   10 +++++-----
 plugins/fn-random/functions.c |    4 ++--
 plugins/fn-stat/functions.c   |    2 +-
 plugins/fn-tsa/functions.c    |    4 ++--
 4 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/plugins/fn-math/functions.c b/plugins/fn-math/functions.c
index 5f26c7d..33d344e 100644
--- a/plugins/fn-math/functions.c
+++ b/plugins/fn-math/functions.c
@@ -458,7 +458,7 @@ gnumeric_ceil (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_countif[] = {
         { GNM_FUNC_HELP_NAME, F_("COUNTIF:count of the cells meeting the given @{criteria}")},
         { GNM_FUNC_HELP_ARG, F_("range:cell area")},
-        { GNM_FUNC_HELP_ARG, F_("criteria: condition for a cell to be counted")},
+        { GNM_FUNC_HELP_ARG, F_("criteria:condition for a cell to be counted")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_SEEALSO, "COUNT,SUMIF"},
         { GNM_FUNC_HELP_END}
@@ -531,8 +531,8 @@ gnumeric_countif (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_sumif[] = {
         { GNM_FUNC_HELP_NAME, F_("SUMIF:sum of the cells in @{actual_range} for which the corresponding cells in the range meet the given @{criteria}")},
         { GNM_FUNC_HELP_ARG, F_("range:cell area")},
-        { GNM_FUNC_HELP_ARG, F_("criteria: condition for a cell to be summed")},
-        { GNM_FUNC_HELP_ARG, F_("actual_range: cell area, defaults to @{range}")},
+        { GNM_FUNC_HELP_ARG, F_("criteria:condition for a cell to be summed")},
+        { GNM_FUNC_HELP_ARG, F_("actual_range:cell area, defaults to @{range}")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_SEEALSO, "SUM,COUNTIF"},
         { GNM_FUNC_HELP_END}
@@ -643,8 +643,8 @@ gnumeric_sumif (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_averageif[] = {
         { GNM_FUNC_HELP_NAME, F_("AVERAGEIF:average of the cells in @{actual range} for which the corresponding cells in the range meet the given @{criteria}")},
         { GNM_FUNC_HELP_ARG, F_("range:cell area")},
-        { GNM_FUNC_HELP_ARG, F_("criteria: condition for a cell to be included")},
-        { GNM_FUNC_HELP_ARG, F_("actual_range: cell area, defaults to @{range}")},
+        { GNM_FUNC_HELP_ARG, F_("criteria:condition for a cell to be included")},
+        { GNM_FUNC_HELP_ARG, F_("actual_range:cell area, defaults to @{range}")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_SEEALSO, "SUMIF,COUNTIF"},
         { GNM_FUNC_HELP_END}
diff --git a/plugins/fn-random/functions.c b/plugins/fn-random/functions.c
index 6a00f5a..214effd 100644
--- a/plugins/fn-random/functions.c
+++ b/plugins/fn-random/functions.c
@@ -880,7 +880,7 @@ gnumeric_simtable (GnmFuncEvalInfo *ei, int argc, GnmExprConstPtr const *argv)
 
 static GnmFuncHelp const help_randsnorm[] = {
         { GNM_FUNC_HELP_NAME, F_("RANDSNORM:random variate from a skew normal distribution") },
-        { GNM_FUNC_HELP_ARG, F_("a: amount of skew, defaults to 0") },
+        { GNM_FUNC_HELP_ARG, F_("a:amount of skew, defaults to 0") },
         { GNM_FUNC_HELP_ARG, F_("\xce\xbc:mean of the underlying normal distribution, defaults to 0") },
         { GNM_FUNC_HELP_ARG, F_("\xcf\x83:standard deviation of the underlying normal distribution, defaults to 1") },
 	{ GNM_FUNC_HELP_NOTE, F_("If @{\xcf\x83} < 0, RANDSNORM returns #NUM!") },
@@ -920,7 +920,7 @@ gnumeric_randsnorm (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 static GnmFuncHelp const help_randstdist[] = {
         { GNM_FUNC_HELP_NAME, F_("RANDSTDIST:random variate from a skew t distribution") },
         { GNM_FUNC_HELP_ARG, F_("df:degrees of freedom") },
-        { GNM_FUNC_HELP_ARG, F_("a: amount of skew, defaults to 0") },
+        { GNM_FUNC_HELP_ARG, F_("a:amount of skew, defaults to 0") },
         { GNM_FUNC_HELP_EXAMPLES, "=RANDSTDIST(5,-2)" },
         { GNM_FUNC_HELP_EXAMPLES, "=RANDSTDIST(5,2)" },
         { GNM_FUNC_HELP_SEEALSO, "RANDTDIST" },
diff --git a/plugins/fn-stat/functions.c b/plugins/fn-stat/functions.c
index f50ac3d..ac65c84 100644
--- a/plugins/fn-stat/functions.c
+++ b/plugins/fn-stat/functions.c
@@ -3699,7 +3699,7 @@ static GnmFuncHelp const help_trend[] = {
 	{ GNM_FUNC_HELP_NAME, F_("TREND:estimates future values of a given data set using a least squares approximation")},
 	{ GNM_FUNC_HELP_ARG, F_("known_y's:known y-values")},
 	{ GNM_FUNC_HELP_ARG, F_("known_x's:known x-values; if @{known_x}'s is omitted, an array {1, 2, 3, ...} is used.")},
-	{ GNM_FUNC_HELP_ARG, F_("new_x's: x-values for which you want to estimate the y-values; defaults to @{known_x}'s")},
+	{ GNM_FUNC_HELP_ARG, F_("new_x's:x-values for which you want to estimate the y-values; defaults to @{known_x}'s")},
 	{ GNM_FUNC_HELP_ARG, F_("const:if this is false the line will be forced to go through the origin; defaults to TRUE")},
 	{ GNM_FUNC_HELP_NOTE, F_("If @{known_y's} and @{known_x's} have unequal number of data points, "
 				 "this function returns a #NUM! error.") },
diff --git a/plugins/fn-tsa/functions.c b/plugins/fn-tsa/functions.c
index 1ddfb01..403b65e 100644
--- a/plugins/fn-tsa/functions.c
+++ b/plugins/fn-tsa/functions.c
@@ -625,7 +625,7 @@ static GnmFuncHelp const help_periodogram[] = {
 	{ GNM_FUNC_HELP_ARG, F_("filter:Window function to  be used, defaults to no window function.") },
 	{ GNM_FUNC_HELP_ARG, F_("abscissas:The abscissas of the data to interpolate, defaults to regularly spaced abscissa.") },
 	{ GNM_FUNC_HELP_ARG, F_("interpolation:The method of interpolation to be used, defaults to no interpolation") },
-	{ GNM_FUNC_HELP_ARG, F_("number: Number of interpolated data points to be used.") },
+	{ GNM_FUNC_HELP_ARG, F_("number:Number of interpolated data points to be used.") },
 	{ GNM_FUNC_HELP_DESCRIPTION, F_("If an interpolation method is used, the number of returned values is one less than the number of targets and the targets values must be given in increasing order.") },
 	{ GNM_FUNC_HELP_DESCRIPTION, F_("The output consists always of one column of numbers.") },
 	INTERPOLATIONMETHODS,
@@ -867,7 +867,7 @@ gnumeric_periodogram (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 
 static GnmFuncHelp const help_fourier[] = {
 	{ GNM_FUNC_HELP_NAME, F_("FOURIER:Fourier or inverse Fourier transform") },
-	{ GNM_FUNC_HELP_ARG, F_("Sequence: the data sequence to be transformed") },
+	{ GNM_FUNC_HELP_ARG, F_("Sequence:the data sequence to be transformed") },
 	{ GNM_FUNC_HELP_ARG, F_("Inverse:if false, the inverse Fourier transform is calculated. Defaults to false") },
 	{ GNM_FUNC_HELP_DESCRIPTION, F_("This array function returns the Fourier or inverse Fourier transform of the given data sequence.") },
 	{ GNM_FUNC_HELP_DESCRIPTION, F_("The output consists always of one column of complex numbers.") },



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]