Corrected various typos in printed strings and documentation. 20131102030509/pspp
authorJohn Darrington <john@darrington.wattle.id.au>
Fri, 1 Nov 2013 18:19:18 +0000 (19:19 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Fri, 1 Nov 2013 18:19:18 +0000 (19:19 +0100)
Reported-by: anonymous
Fixes bug 40447

doc/combining.texi
doc/transformation.texi
src/language/dictionary/mrsets.c
src/language/stats/regression.c
src/language/stats/runs.c
src/math/levene.c
tests/language/dictionary/mrsets.at

index a7bca10f5ba6a1d1bd9a382e92706274af4357d3..93f4e82c985fe4a777325b077ca9d319fd37c8e0 100644 (file)
@@ -61,7 +61,7 @@ following sections describe details specific to each command.
 Each of these commands reads two or more input files and combines them.  
 The command's output becomes the new active dataset.
 None of the commands actually change the input files.
-Therefore, if you want the changes to become permanant, you must explictly
+Therefore, if you want the changes to become permanent, you must explicitly
 save them using an appropriate procedure or transformation (@pxref{System and Portable File IO}).
 
 The syntax of each command begins with a specification of the files to
index ae07524ef30888e28adf4a10d4ca5390370bf95a..1ca2d22b297ba0727c1d089532ad3ac9312a14f4 100644 (file)
@@ -672,7 +672,7 @@ recode
 @end example
 @noindent Here we have two recodings. The first affects the source variable
 @var{a} and recodes in-place the value 2 into 22 and all other values to 99.
-The second recoding copies the values of @var{b} into the the variable @var{z}, 
+The second recoding copies the values of @var{b} into the variable @var{z}, 
 changing any instances of 1 into 3.
 
 @node SORT CASES
index 9e1ca3b0d0bc72f330cbad2532639b3e546ca5cd..621516b9ecdc82eaaceaf480d5f958142dc353a1 100644 (file)
@@ -368,7 +368,7 @@ parse_group (struct lexer *lexer, struct dictionary *dict,
                     msg (SW, _("Variables %s and %s specified as part of "
                                "multiple dichotomy group %s (which has "
                                "CATEGORYLABELS=COUNTEDVALUES) have the same "
-                               "value label for the the group's counted "
+                               "value label for the group's counted "
                                "value.  These categories will not be "
                                "distinguishable in output."),
                          other_name, name, mrset->name);
index 194915198b143ce2fe4b87a181d8f0ad57f50f3d..a9ac554385c529125586db15ca581faded4b9037 100644 (file)
@@ -478,8 +478,8 @@ identify_indep_vars (const struct regression *cmd,
        */
       msg (SW,
            gettext
-           ("The dependent variable is equal to the independent variable."
-            "The least squares line is therefore Y=X."
+           ("The dependent variable is equal to the independent variable. "
+            "The least squares line is therefore Y=X. "
             "Standard errors and related statistics may be meaningless."));
       n_indep_vars = 1;
       indep_vars[0] = cmd->vars[0];
index 7e36065730a27818b73f92973f38739840e69c66..b3a1b4fdd80614e432d7fcc2a81a89be942ee20a 100644 (file)
@@ -64,7 +64,7 @@ struct run_state
 
 
 /* Return the Z statistic representing the assympototic
-   distribution of the the number of runs */
+   distribution of the number of runs */
 static double
 runs_statistic (const struct run_state *rs)
 {
@@ -164,7 +164,7 @@ runs_execute (const struct dataset *ds,
              }
            casegrouper_destroy (grouper);
            if (multimodal)
-             msg (MW, _("Multiple modes exist for varible `%s'.  Using %g as the threshold value."),
+             msg (MW, _("Multiple modes exist for variable `%s'.  Using %g as the threshold value."),
                   var_get_name (var), run->cutpoint);
          }
       }
index 5193c86a1a453f001456ecc7f747870cf346548b..098fcc5a1ba9feba488060e3406f54f84364c998 100644 (file)
@@ -45,7 +45,7 @@ struct levene
   /* Width of the categorical variable */
   int gvw ;
 
-  /* The value deviding the the groups. Valid only for dichotomous categorical variable.*/
+  /* The value dividing the groups. Valid only for dichotomous categorical variable.*/
   const union value *cutpoint;
 
 
index edff6ae25360129f58180965f12cec68d99f2a61..b69b91e1a425c96db4a427c41ebe9a9a78054215 100644 (file)
@@ -57,7 +57,7 @@ mrsets.sps:29: warning: MRSETS: Variable y specified as part of multiple dichoto
 
 mrsets.sps:34: warning: MRSETS: Variable x specified as part of multiple dichotomy group $c (which has CATEGORYLABELS=COUNTEDVALUES) has no value label for its counted value.  This category will not be distinguishable in output.
 
-mrsets.sps:34: warning: MRSETS: Variables y and z specified as part of multiple dichotomy group $c (which has CATEGORYLABELS=COUNTEDVALUES) have the same value label for the the group's counted value.  These categories will not be distinguishable in output.
+mrsets.sps:34: warning: MRSETS: Variables y and z specified as part of multiple dichotomy group $c (which has CATEGORYLABELS=COUNTEDVALUES) have the same value label for the group's counted value.  These categories will not be distinguishable in output.
 
 mrsets.sps:38: warning: MRSETS: MDGROUP subcommand for group $d specifies LABELSOURCE=VARLABEL but not CATEGORYLABELS=COUNTEDVALUES.  Ignoring LABELSOURCE.