* Bugs which cause a crash when correct input is given are "Major"
* Bugs which render the software unusable are "Blocker"
-Obviously some cases are unclear and judgement has be be used.
+Obviously some cases are unclear and judgement has to be used.
Renames each of the @var{count} variables in @var{vars} to the name in
the corresponding position of @var{new_names}. If the renaming would
result in a duplicate variable name, returns false and stores one of
-the names that would be be duplicated into @code{*@var{err_name}}, if
+the names that would be duplicated into @code{*@var{err_name}}, if
@var{err_name} is non-null. Otherwise, the renaming is successful,
and true is returned.
@end deftypefun
{
struct hmap_node node;
- /* The the number of the sheet. */
+ /* The number of the sheet. */
int sheet;
/* The cell's row. */
dict_delete_var (dict, var);
}
-/* Decodes the dictionary read from R, saving it into into *DICT. Character
+/* Decodes the dictionary read from R, saving it into *DICT. Character
strings in R are decoded using ENCODING, or an encoding obtained from R if
ENCODING is null, or the locale encoding if R specifies no encoding.
return NULL;
}
-/* Returns an identifier that is is not currently in use as a dataset name.
+/* Returns an identifier that is not currently in use as a dataset name.
The caller must free the returned identifier, with free(). */
char *
session_generate_dataset_name (struct session *s)
return aux.n;
}
-/* Decodes the dictionary read from R, saving it into into *DICT. Character
+/* Decodes the dictionary read from R, saving it into *DICT. Character
strings in R are decoded using ENCODING, or an encoding obtained from R if
ENCODING is null, or the locale encoding if R specifies no encoding.
circumstances.
If this operation has a minimum number of valid arguments,
- 'min_valid_src' should be an an expression that evaluates to
+ 'min_valid_src' should be an expression that evaluates to
the minimum number of valid arguments for this operation.
"""
/* Returns a newly allocated matrix identical to M.
- It it the callers responsibility to free the returned value.
+ It is the callers responsibility to free the returned value.
*/
static gsl_matrix *
matrix_dup (const gsl_matrix *m)
if (!idata->mm.cov && !(idata->mm.corr && idata->mm.var_matrix))
{
msg (ME, _("The dataset has no covariance matrix or a "
- "correlation matrix along with standard devications."));
+ "correlation matrix along with standard deviations."));
return;
}
{
char s[FMT_STRING_LEN_MAX + 1];
fmt_to_string (write->format, s);
- msg (SE, _("Format %s is too wide for %zu-byte matrix eleemnts."),
+ msg (SE, _("Format %s is too wide for %zu-byte matrix elements."),
s, sizeof (double));
goto error;
}
/* Renders SRC, which contains SRC_SIZE bytes of a floating-point
number in the given FORMAT, as relatively human-readable
null-terminated string in the DST_SIZE bytes in DST. DST_SIZE
- must be be large enough to hold the output. */
+ must be large enough to hold the output. */
static void
make_printable (enum float_format format, const void *src_, size_t src_size,
char *dst, size_t dst_size)
node->value = value;
}
-/* Frees NODE and and its key and value. Ordinarily nodes are owned by
+/* Frees NODE and its key and value. Ordinarily nodes are owned by
string_maps, but this function should only be used by a caller that owns
NODE, such as one that has called string_map_delete_nofree() for the
node. */
node->value = value;
}
-/* Frees NODE and and its key and value. Ordinarily nodes are owned by
+/* Frees NODE and its key and value. Ordinarily nodes are owned by
stringi_maps, but this function should only be used by a caller that owns
NODE, such as one that has called stringi_map_delete_nofree() for the
node. */
default_flags =
g_param_spec_flags ("default",
"Default",
- "The mask that decides what what button grabs the default",
+ "The mask that decides what button grabs the default",
PSPPIRE_TYPE_BUTTON_MASK,
0,
G_PARAM_READWRITE);
matrix.sps:19: error: WRITE: Output format E5.0 specifies width 5, but E
requires a width between 6 and 40.
-matrix.sps:20: error: WRITE: Format A9 is too wide for 8-byte matrix eleemnts.
+matrix.sps:20: error: WRITE: Format A9 is too wide for 8-byte matrix elements.
matrix.sps:21.7-21.11: error: MATRIX: WRITE with MODE=TRIANGULAR requires a
square matrix but the matrix to be written has dimensions 1×2.