From e18a2532acf6059231360e771524b9b16471f803 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Mon, 6 May 2019 11:06:55 +0200 Subject: [PATCH] Spelling: nonnegative -> non-negative --- src/language/data-io/data-list.c | 4 ++-- src/output/options.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/language/data-io/data-list.c b/src/language/data-io/data-list.c index 87f100f823..754341ccac 100644 --- a/src/language/data-io/data-list.c +++ b/src/language/data-io/data-list.c @@ -126,7 +126,7 @@ cmd_data_list (struct lexer *lexer, struct dataset *ds) int records = lex_integer (lexer); if (records < 0) { - msg (SE, _("The %s value must be nonnegative."), "RECORDS"); + msg (SE, _("The %s value must be non-negative."), "RECORDS"); goto error; } data_parser_set_records (parser, records); @@ -141,7 +141,7 @@ cmd_data_list (struct lexer *lexer, struct dataset *ds) int skip = lex_integer (lexer); if (skip < 0) { - msg (SE, _("The %s value must be nonnegative."), "SKIP"); + msg (SE, _("The %s value must be non-negative."), "SKIP"); goto error; } data_parser_set_skip (parser, skip); diff --git a/src/output/options.c b/src/output/options.c index be2bed42d9..4a066de372 100644 --- a/src/output/options.c +++ b/src/output/options.c @@ -228,7 +228,7 @@ parse_int (struct driver_option *o, int min_value, int max_value) else if (max_value == INT_MAX) { if (min_value == 0) - msg (MW, _("%s: `%s' is `%s' but a nonnegative integer " + msg (MW, _("%s: `%s' is `%s' but a non-negative integer " "is required"), o->driver_name, o->name, o->value); else if (min_value == 1) -- 2.30.2