[gnumeric] Fixed typos.



commit 18abcb2546f5b584aaf1cbf78e16d51fcdbb0d7d
Author: J.H.M. Dassen (Ray) <jdassen debian org>
Date:   Sun Sep 20 22:47:31 2009 +0200

    Fixed typos.

 plugins/fn-eng/functions.c       |    2 +-
 plugins/fn-erlang/functions.c    |    2 +-
 plugins/fn-financial/functions.c |    4 ++--
 plugins/fn-math/functions.c      |    2 +-
 plugins/fn-random/functions.c    |    2 +-
 plugins/fn-stat/functions.c      |    4 ++--
 6 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/plugins/fn-eng/functions.c b/plugins/fn-eng/functions.c
index 882da94..85d40f2 100644
--- a/plugins/fn-eng/functions.c
+++ b/plugins/fn-eng/functions.c
@@ -209,7 +209,7 @@ static GnmFuncHelp const help_base[] = {
         { GNM_FUNC_HELP_NAME, F_("BASE:string of digits representing the number @{n} in base @{b}") },
         { GNM_FUNC_HELP_ARG, F_("n:integer") },
         { GNM_FUNC_HELP_ARG, F_("b:base (2 \xe2\x89\xa4 @{b} \xe2\x89\xa4 36)") },
-        { GNM_FUNC_HELP_ARG, F_("length:minimum length of the resutling string") },
+        { GNM_FUNC_HELP_ARG, F_("length:minimum length of the resulting string") },
         { GNM_FUNC_HELP_DESCRIPTION, F_("BASE converts @{n} to its string representation in base @{b}."
 					" Leading zeroes will be added to reach the minimum length given by @{length}.") },
 	{ GNM_FUNC_HELP_ODF, F_("This function is OpenFormula compatible.") },
diff --git a/plugins/fn-erlang/functions.c b/plugins/fn-erlang/functions.c
index 3fa45f8..d05eca6 100644
--- a/plugins/fn-erlang/functions.c
+++ b/plugins/fn-erlang/functions.c
@@ -106,7 +106,7 @@ static GnmFuncHelp const help_probblock[] = {
 	{ GNM_FUNC_HELP_ARG, F_("traffic:number of calls")},
 	{ GNM_FUNC_HELP_ARG, F_("circuits:number of circuits")},
 	{ GNM_FUNC_HELP_DESCRIPTION, F_("PROBBLOCK returns probability of blocking when @{traffic}"
-					" calls load into @{ccicuits} circuits.")},
+					" calls load into @{circuits} circuits.")},
 	{ GNM_FUNC_HELP_NOTE, F_("@{traffic} cannot exceed @{circuits}.") },
 	{ GNM_FUNC_HELP_EXAMPLES, "=PROBBLOCK(24,30)" },
 	{ GNM_FUNC_HELP_SEEALSO, "OFFTRAF,DIMCIRC,OFFCAP"},
diff --git a/plugins/fn-financial/functions.c b/plugins/fn-financial/functions.c
index ce1fa12..79954db 100644
--- a/plugins/fn-financial/functions.c
+++ b/plugins/fn-financial/functions.c
@@ -1280,7 +1280,7 @@ static GnmFuncHelp const help_rri[] = {
         { GNM_FUNC_HELP_ARG, F_("p:number of periods")},
         { GNM_FUNC_HELP_ARG, F_("pv:present value")},
         { GNM_FUNC_HELP_ARG, F_("fv:future value")},
-	{ GNM_FUNC_HELP_DESCRIPTION, F_("RRI dtermines an equivalent interest rate for an investment that increases in value. The interest is compounded after each complete period.") },
+	{ GNM_FUNC_HELP_DESCRIPTION, F_("RRI determines an equivalent interest rate for an investment that increases in value. The interest is compounded after each complete period.") },
 	TYPE_HELP,
 	{ GNM_FUNC_HELP_NOTE, F_("Note that @{p} need not be an integer but for fractional value the calculated rate is only approximate.") },
 	{ GNM_FUNC_HELP_ODF, F_("This function is OpenFormula compatible.") },
@@ -1939,7 +1939,7 @@ gnumeric_g_duration (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 
 static GnmFuncHelp const help_fvschedule[] = {
         { GNM_FUNC_HELP_NAME, F_("FVSCHEDULE:future value")},
-        { GNM_FUNC_HELP_ARG, F_("principal:intial value")},
+        { GNM_FUNC_HELP_ARG, F_("principal:initial value")},
         { GNM_FUNC_HELP_ARG, F_("schedule:range of interest rates")},
         { GNM_FUNC_HELP_DESCRIPTION, F_("FVSCHEDULE calculates the future value of @{principal} after applying a range of interest rates with compounding.") },
 	{ GNM_FUNC_HELP_EXAMPLES, "=FVSCHEDULE(1000,{0.1;0.02;0.1})" },
diff --git a/plugins/fn-math/functions.c b/plugins/fn-math/functions.c
index fd4b5e4..6047fe2 100644
--- a/plugins/fn-math/functions.c
+++ b/plugins/fn-math/functions.c
@@ -118,7 +118,7 @@ static GnmFuncHelp const help_lcm[] = {
         { GNM_FUNC_HELP_NAME, F_("LCM:the least common multiple")},
         { GNM_FUNC_HELP_ARG, F_("n0:positive integer")},
         { GNM_FUNC_HELP_ARG, F_("n1:positive integer")},
-	{ GNM_FUNC_HELP_DESCRIPTION, F_("LCM calculates the least common multiple of the given numbers @{n0},@{n1},..., the smallest integer that is a multiple of each argment.")},
+	{ GNM_FUNC_HELP_DESCRIPTION, F_("LCM calculates the least common multiple of the given numbers @{n0},@{n1},..., the smallest integer that is a multiple of each argument.")},
 	{ GNM_FUNC_HELP_NOTE, F_("If any of the arguments is not an integer, it is truncated.")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },
         { GNM_FUNC_HELP_EXAMPLES, "=LCM(2,13)" },
diff --git a/plugins/fn-random/functions.c b/plugins/fn-random/functions.c
index 8b75b5b..42b92ac 100644
--- a/plugins/fn-random/functions.c
+++ b/plugins/fn-random/functions.c
@@ -321,7 +321,7 @@ gnumeric_randbernoulli (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 
 static GnmFuncHelp const help_randnorm[] = {
         { GNM_FUNC_HELP_NAME, F_("RANDNORM:random variate from a normal distribution") },
-        { GNM_FUNC_HELP_ARG, F_("\xce\xbc:mean of the ditribution") },
+        { GNM_FUNC_HELP_ARG, F_("\xce\xbc:mean of the distribution") },
         { GNM_FUNC_HELP_ARG, F_("\xcf\x83:standard deviation of the distribution") },
 	{ GNM_FUNC_HELP_NOTE, F_("If @{\xcf\x83} < 0, RANDNORM returns #NUM!") },
         { GNM_FUNC_HELP_EXAMPLES, "=RANDNORM(0,1)" },
diff --git a/plugins/fn-stat/functions.c b/plugins/fn-stat/functions.c
index 3917848..81b38e7 100644
--- a/plugins/fn-stat/functions.c
+++ b/plugins/fn-stat/functions.c
@@ -1366,7 +1366,7 @@ static GnmFuncHelp const help_finv[] = {
 	{ GNM_FUNC_HELP_NAME, F_("FINV:inverse of the survival function of the F distribution")},
 	{ GNM_FUNC_HELP_ARG, F_("p:probability")},
 	{ GNM_FUNC_HELP_ARG, F_("dof_of_num:numerator degrees of freedom")},
-	{ GNM_FUNC_HELP_ARG, F_("dof_of_denom:denomiantor degrees of freedom")},
+	{ GNM_FUNC_HELP_ARG, F_("dof_of_denom:denominator degrees of freedom")},
 	{ GNM_FUNC_HELP_DESCRIPTION, F_("The survival function is 1 minus the cumulative distribution function.") },
 	{ GNM_FUNC_HELP_NOTE, F_("If @{p} < 0 or @{p} > 1 this function returns a #NUM! error.") },
 	{ GNM_FUNC_HELP_NOTE, F_("If @{dof_of_num} < 1 or @{dof_of_denom} < 1 this function returns a #NUM! error.")},
@@ -2387,7 +2387,7 @@ static GnmFuncHelp const help_ztest[] = {
 	{ GNM_FUNC_HELP_NAME, F_("ZTEST:p-value of a 2-tailed z-test for a population mean")},
 	{ GNM_FUNC_HELP_ARG, F_("ref:data set")},
 	{ GNM_FUNC_HELP_ARG, F_("x:mean as given in the null hypothesis")},
-	{ GNM_FUNC_HELP_ARG, F_("stddev:population stadard deviation, defaults to the sample standard deviation")},
+	{ GNM_FUNC_HELP_ARG, F_("stddev:population standard deviation, defaults to the sample standard deviation")},
 	{ GNM_FUNC_HELP_NOTE, F_("If @{ref} contains less than two data items ZTEST "
 				 "returns #DIV/0! error.")},
 	{ GNM_FUNC_HELP_EXCEL, F_("This function is Excel compatible.") },



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