[gnumeric] @argument --> @{argument}



commit 79fba7104b662fb69877cdd761d2a4a8511b067d
Author: Andreas J. Guelzow <aguelzow pyrshep ca>
Date:   Sun Aug 16 09:04:55 2009 -0600

    @argument --> @{argument}
    
    2009-08-16  Andreas J. Guelzow <aguelzow pyrshep ca>
    
    	* functions.c: a few description corrections:
    	  @argument --> @{argument}

 plugins/fn-math/ChangeLog   |    5 +++++
 plugins/fn-math/functions.c |   10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)
---
diff --git a/plugins/fn-math/ChangeLog b/plugins/fn-math/ChangeLog
index 78c42c0..8803b2a 100644
--- a/plugins/fn-math/ChangeLog
+++ b/plugins/fn-math/ChangeLog
@@ -1,3 +1,8 @@
+2009-08-16  Andreas J. Guelzow <aguelzow pyrshep ca>
+
+	* functions.c: a few description corrections:
+	  @argument --> @{argument}
+
 2009-08-15  Morten Welinder <terra gnome org>
 
 	* Release 1.9.10
diff --git a/plugins/fn-math/functions.c b/plugins/fn-math/functions.c
index d0432c1..4523703 100644
--- a/plugins/fn-math/functions.c
+++ b/plugins/fn-math/functions.c
@@ -452,7 +452,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_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_EXCEL, F_("This function is Excel compatible.") },
@@ -526,7 +526,7 @@ 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_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 sumed")},
         { GNM_FUNC_HELP_ARG, F_("actual_range: cell area, defaults to @{range}")},
@@ -1114,7 +1114,7 @@ static GnmFuncHelp const help_mod[] = {
         { GNM_FUNC_HELP_NAME, F_("MOD: the remainder of @{x} under division by @{n}")},
         { GNM_FUNC_HELP_ARG, F_("x:integer")},
         { GNM_FUNC_HELP_ARG, F_("n:integer")},
-        { GNM_FUNC_HELP_DESCRIPTION, F_("MOD function returns the remainder when @{x} is divided by @n.")},
+        { GNM_FUNC_HELP_DESCRIPTION, F_("MOD function returns the remainder when @{x} is divided by @{n}.")},
 	{ GNM_FUNC_HELP_NOTE, F_("If @{n} is 0, MOD returns #DIV/0!")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_EXAMPLES, "=MOD(23,7)" },
@@ -2315,8 +2315,8 @@ done:
 static GnmFuncHelp const help_minverse[] = {
         { GNM_FUNC_HELP_NAME, F_("MINVERSE:the inverse matrix of @{matrix}")},
         { GNM_FUNC_HELP_ARG, F_("matrix:a square matrix")},
-	{ GNM_FUNC_HELP_NOTE, F_("If @matrix is not invertible, MINVERSE returns #NUM!") },
-	{ GNM_FUNC_HELP_NOTE, F_("If @matrix does not contain an equal number of columns and rows, MINVERSE returns #VALUE!") },
+	{ GNM_FUNC_HELP_NOTE, F_("If @{matrix} is not invertible, MINVERSE returns #NUM!") },
+	{ GNM_FUNC_HELP_NOTE, F_("If @{matrix} does not contain an equal number of columns and rows, MINVERSE returns #VALUE!") },
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
 	{ GNM_FUNC_HELP_SEEALSO, "MMULT, MDETERM"},
         { GNM_FUNC_HELP_END}



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