[gnumeric] fix various name records



commit bbcd18ee0b70d41cd99665b468799f85b3227ba0
Author: Andreas J. Guelzow <aguelzow pyrshep ca>
Date:   Fri Aug 14 13:08:03 2009 -0600

    fix various name records
    
    2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
    
    	* functions.c (help_abs): fix name record
    	(help_asinh): fix name record
    	(help_coth): fix name record
    	(help_degrees): fix name record
    	(help_csch): fix name record
    	(help_sinh): fix
    	(help_tanh): fix name record
    	(help_round): fix name record
    
    2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
    
    	* functions.c (help_error_type): fix name record
    
    2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
    
    	* functions.c (help_oct2dec): fix name record
    	(help_bessely): ditto
    	(help_erfc): ditto
    
    2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
    
    	* functions.c (help_imcsch): fix name record
    
    2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
    
    	* functions.c (help_ddb): fix name record
    	(help_amorlinc): fix

 plugins/fn-complex/ChangeLog     |    4 ++++
 plugins/fn-complex/functions.c   |    2 +-
 plugins/fn-eng/ChangeLog         |    6 ++++++
 plugins/fn-eng/functions.c       |    6 +++---
 plugins/fn-financial/ChangeLog   |    5 +++++
 plugins/fn-financial/functions.c |    2 +-
 plugins/fn-info/ChangeLog        |    4 ++++
 plugins/fn-info/functions.c      |    2 +-
 plugins/fn-math/ChangeLog        |   11 +++++++++++
 plugins/fn-math/functions.c      |   26 +++++++++++++-------------
 10 files changed, 49 insertions(+), 19 deletions(-)
---
diff --git a/plugins/fn-complex/ChangeLog b/plugins/fn-complex/ChangeLog
index 19db4ea..00df4a7 100644
--- a/plugins/fn-complex/ChangeLog
+++ b/plugins/fn-complex/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
+
+	* functions.c (help_imcsch): fix name record
+	
 2009-06-30  Andreas J. Guelzow <aguelzow pyrshep ca>
 
 	* functions.c: conversion to new function description
diff --git a/plugins/fn-complex/functions.c b/plugins/fn-complex/functions.c
index a9dff62..d10c58f 100644
--- a/plugins/fn-complex/functions.c
+++ b/plugins/fn-complex/functions.c
@@ -705,7 +705,7 @@ gnumeric_imsech (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 /***************************************************************************/
 
 static GnmFuncHelp const help_imcsch[] = {
-        { GNM_FUNC_HELP_NAME, F_("IMSECH:the hyperbolic cosecant of the complex number @{z}") },
+        { GNM_FUNC_HELP_NAME, F_("IMCSCH:the hyperbolic cosecant of the complex number @{z}") },
         { GNM_FUNC_HELP_ARG, F_("z:a complex number") },
 	{ GNM_FUNC_HELP_NOTE, F_("If @{z} is not a valid complex number, #VALUE! is returned.") },
         { GNM_FUNC_HELP_EXAMPLES, "=IMCSCH(\"1+j\")" },
diff --git a/plugins/fn-eng/ChangeLog b/plugins/fn-eng/ChangeLog
index fe5a202..7cd2f45 100644
--- a/plugins/fn-eng/ChangeLog
+++ b/plugins/fn-eng/ChangeLog
@@ -1,5 +1,11 @@
 2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
 
+	* functions.c (help_oct2dec): fix name record
+	(help_bessely): ditto
+	(help_erfc): ditto
+
+2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
+
 	* functions.c (help_hex2dec): remove incorrect argument
 
 2009-08-05  Andreas J. Guelzow <aguelzow pyrshep ca>
diff --git a/plugins/fn-eng/functions.c b/plugins/fn-eng/functions.c
index 7199fdd..f6bb9c0 100644
--- a/plugins/fn-eng/functions.c
+++ b/plugins/fn-eng/functions.c
@@ -400,7 +400,7 @@ gnumeric_decimal (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 /***************************************************************************/
 
 static GnmFuncHelp const help_oct2dec[] = {
-        { GNM_FUNC_HELP_NAME, F_("BIN2DEC:decimal representation of the octal number @{x}") },
+        { GNM_FUNC_HELP_NAME, F_("OCT2DEC:decimal representation of the octal number @{x}") },
         { GNM_FUNC_HELP_ARG, F_("x:a octal number, either as a string or as a number") },
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_EXAMPLES, "=OCT2DEC(\"124\")" },
@@ -630,7 +630,7 @@ gnumeric_besselj (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 /***************************************************************************/
 
 static GnmFuncHelp const help_bessely[] = {
-        { GNM_FUNC_HELP_NAME, F_("BESSELJ:Bessel function of the second kind of order @{\xce\xb1} at @{x}") },
+        { GNM_FUNC_HELP_NAME, F_("BESSELY:Bessel function of the second kind of order @{\xce\xb1} at @{x}") },
         { GNM_FUNC_HELP_ARG, F_("X:number") },
         { GNM_FUNC_HELP_ARG, F_("\xce\xb1:order (any non-negative integer)") },
 	{ GNM_FUNC_HELP_NOTE, F_("If @{x} or @{\xce\xb1} are not numeric, #VALUE! is returned. "
@@ -1095,7 +1095,7 @@ gnumeric_erf (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 /***************************************************************************/
 
 static GnmFuncHelp const help_erfc[] = {
-        { GNM_FUNC_HELP_NAME, F_("ERF:Complementary Gauss error function") },
+        { GNM_FUNC_HELP_NAME, F_("ERFC:Complementary Gauss error function") },
         { GNM_FUNC_HELP_ARG, F_("x:number") },
 	{ GNM_FUNC_HELP_DESCRIPTION, F_("ERFC returns 2/sqrt(\xcf\x80)* integral from @{x} to \xe2\x88\x9e of exp(-t*t) dt") },
         { GNM_FUNC_HELP_EXAMPLES, "=ERFC(6)" },
diff --git a/plugins/fn-financial/ChangeLog b/plugins/fn-financial/ChangeLog
index b26e0fe..9b47248 100644
--- a/plugins/fn-financial/ChangeLog
+++ b/plugins/fn-financial/ChangeLog
@@ -1,3 +1,8 @@
+2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
+
+	* functions.c (help_ddb): fix name record
+	(help_amorlinc): fix
+	
 2009-08-14  Morten Welinder  <terra gnome org>
 
 	* functions.c: Convert to new doc format.
diff --git a/plugins/fn-financial/functions.c b/plugins/fn-financial/functions.c
index b4bf80b..0421e12 100644
--- a/plugins/fn-financial/functions.c
+++ b/plugins/fn-financial/functions.c
@@ -2767,7 +2767,7 @@ static GnmFuncHelp const help_amorlinc[] = {
         { GNM_FUNC_HELP_ARG, F_("rate:depreciation rate")},
         { GNM_FUNC_HELP_ARG, F_("basis:calendar basis")},
 	{ GNM_FUNC_HELP_DESCRIPTION, F_(
-			"AMORDEGRC calculates the depreciation of an asset using French accounting conventions. "
+			"AMORLINC calculates the depreciation of an asset using French accounting conventions. "
 			"Assets purchased in the middle of a period take prorated depreciation into account. ") },
 	{ GNM_FUNC_HELP_NOTE, F_("Named for AMORtissement LINeaire Comptabilite.") },
 	GNM_DATE_BASIS_HELP
diff --git a/plugins/fn-info/ChangeLog b/plugins/fn-info/ChangeLog
index 9300711..71b469b 100644
--- a/plugins/fn-info/ChangeLog
+++ b/plugins/fn-info/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
+
+	* functions.c (help_error_type): fix name record
+	
 2009-07-5  Andreas J. Guelzow <aguelzow pyrshep ca>
 
 	* functions.c (help_*): change to new format
diff --git a/plugins/fn-info/functions.c b/plugins/fn-info/functions.c
index 876f6a0..65abf13 100644
--- a/plugins/fn-info/functions.c
+++ b/plugins/fn-info/functions.c
@@ -1462,7 +1462,7 @@ gnumeric_iserr (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 /***************************************************************************/
 
 static GnmFuncHelp const help_error_type[] = {
-        { GNM_FUNC_HELP_NAME, F_("ERROR_TYPE:the type of @error")},
+        { GNM_FUNC_HELP_NAME, F_("ERROR.TYPE:the type of @error")},
         { GNM_FUNC_HELP_ARG, F_("error:an error")},
         { GNM_FUNC_HELP_DESCRIPTION, F_("ERROR.TYPE returns an error number corresponding to the given "
 					"error value.  The error numbers for error values are:\n\n"
diff --git a/plugins/fn-math/ChangeLog b/plugins/fn-math/ChangeLog
index 2e70a14..dc059e8 100644
--- a/plugins/fn-math/ChangeLog
+++ b/plugins/fn-math/ChangeLog
@@ -1,5 +1,16 @@
 2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
 
+	* functions.c (help_abs): fix name record
+	(help_asinh): fix name record
+	(help_coth): fix name record
+	(help_degrees): fix name record
+	(help_csch): fix name record
+	(help_sinh): fix
+	(help_tanh): fix name record
+	(help_round): fix name record
+	
+2009-08-14  Andreas J. Guelzow <aguelzow pyrshep ca>
+
 	* functions.c (help_*): change x:value to x:number throughout
 	(help_asin): add argument description
 
diff --git a/plugins/fn-math/functions.c b/plugins/fn-math/functions.c
index 1c69f2a..8ba105f 100644
--- a/plugins/fn-math/functions.c
+++ b/plugins/fn-math/functions.c
@@ -217,7 +217,7 @@ gnumeric_hypot (GnmFuncEvalInfo *ei, int argc, GnmExprConstPtr const *argv)
 /***************************************************************************/
 
 static GnmFuncHelp const help_abs[] = {
-        { GNM_FUNC_HELP_NAME, F_("integers and floating point numbers.ABS:absolute value")},
+        { GNM_FUNC_HELP_NAME, F_("ABS:absolute value")},
         { GNM_FUNC_HELP_ARG, F_("x:number")},
         { GNM_FUNC_HELP_DESCRIPTION, F_("ABS gives the absolute value of @{x}, i.e. the non-negative number of the same magnitude as @{x}.")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
@@ -344,11 +344,11 @@ gnumeric_asin (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 
 static GnmFuncHelp const help_asinh[] = {
         { GNM_FUNC_HELP_NAME, F_("ASINH:the inverse hyperbolic sine of @{x}")},
-	{ GNM_FUNC_HELP_ARG, F_("x:angle in radians")},
+	{ GNM_FUNC_HELP_ARG, F_("x:number")},
         { GNM_FUNC_HELP_DESCRIPTION, F_("ASINH calculates the inverse hyperbolic sine of @{x}; that is the value whose hyperbolic sine is @{x}.")},
  	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
-        { GNM_FUNC_HELP_EXAMPLES, "=ASIN(0.5)" },
-        { GNM_FUNC_HELP_EXAMPLES, "=ASIN(1)" },
+        { GNM_FUNC_HELP_EXAMPLES, "=ASINH(0.5)" },
+        { GNM_FUNC_HELP_EXAMPLES, "=ASINH(1)" },
 	{ GNM_FUNC_HELP_SEEALSO, "ASIN,ACOSH,SIN,COS,DEGREES,RADIANS"},
         { GNM_FUNC_HELP_END}
 };
@@ -725,7 +725,7 @@ gnumeric_cot (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 /***************************************************************************/
 
 static GnmFuncHelp const help_coth[] = {
-	{ GNM_FUNC_HELP_NAME, F_("COT:hyperbolic cotangent of a value")},
+	{ GNM_FUNC_HELP_NAME, F_("COTH:hyperbolic cotangent of a value")},
 	{ GNM_FUNC_HELP_ARG, F_("x:number")},
 	{ GNM_FUNC_HELP_EXAMPLES, "=COTH(0.12)" },
 	{ GNM_FUNC_HELP_SEEALSO, "TANH,ACOTH" },
@@ -743,7 +743,7 @@ gnumeric_coth (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 /***************************************************************************/
 
 static GnmFuncHelp const help_degrees[] = {
-        { GNM_FUNC_HELP_NAME, F_("DEGGREES:Equivalent degrees to @{x} radians.")},
+        { GNM_FUNC_HELP_NAME, F_("DEGREES:Equivalent degrees to @{x} radians.")},
         { GNM_FUNC_HELP_ARG, F_("x:angle in radians")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_EXAMPLES, "=DEGREES(2.5)" },
@@ -1214,7 +1214,7 @@ gnumeric_csc (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 /***************************************************************************/
 
 static GnmFuncHelp const help_csch[] = {
-	{ GNM_FUNC_HELP_NAME, F_("CSC:Hyperbolic cosecant")},
+	{ GNM_FUNC_HELP_NAME, F_("CSCH:Hyperbolic cosecant")},
 	{ GNM_FUNC_HELP_ARG, F_("x:angle in radians")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is not Excel compatible.") },
 	{ GNM_FUNC_HELP_ODF, F_("This function is OpenFormula compatible.") },
@@ -1272,11 +1272,11 @@ gnumeric_sech (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 }
 /***************************************************************************/
 static GnmFuncHelp const help_sinh[] = {
-        { GNM_FUNC_HELP_NAME, F_("ASINH:the inverse hyperbolic sine of @{x}")},
-        { GNM_FUNC_HELP_ARG, F_("x:number")},
+        { GNM_FUNC_HELP_NAME, F_("SINH:the hyperbolic sine of @{x}")},
+        { GNM_FUNC_HELP_ARG, F_("x:angle in radians")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
-        { GNM_FUNC_HELP_EXAMPLES, "=ASINH(0.1)" },
-        { GNM_FUNC_HELP_EXAMPLES, "=ASINH(-0.1)" },
+        { GNM_FUNC_HELP_EXAMPLES, "=SINH(0.1)" },
+        { GNM_FUNC_HELP_EXAMPLES, "=SINH(-0.1)" },
         { GNM_FUNC_HELP_SEEALSO, "ACOS,ASINH,DEGREES,RADIANS "}, 
         { GNM_FUNC_HELP_END}
 };
@@ -1424,7 +1424,7 @@ gnumeric_tan (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 /***************************************************************************/
 
 static GnmFuncHelp const help_tanh[] = {
-        { GNM_FUNC_HELP_NAME, F_("TAN:hyperbolic tangent")},
+        { GNM_FUNC_HELP_NAME, F_("TANH:hyperbolic tangent")},
         { GNM_FUNC_HELP_ARG, F_("x:angle in radians")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
 	{ GNM_FUNC_HELP_EXAMPLES, "=TANH(2)"},
@@ -1742,7 +1742,7 @@ gnumeric_rounddown (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 /***************************************************************************/
 
 static GnmFuncHelp const help_round[] = {
-	{ GNM_FUNC_HELP_NAME, F_("ROUNDDOWN:rounded @{x}")},
+	{ GNM_FUNC_HELP_NAME, F_("ROUND:rounded @{x}")},
         { GNM_FUNC_HELP_ARG, F_("x:number")},
 	{ GNM_FUNC_HELP_ARG, F_("d:integer, defaults to 0")},
 	{ GNM_FUNC_HELP_DESCRIPTION, F_("If @{d} is greater than zero, @{x} is rounded to the given number of digits.\n"



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