From 209e20c7b75e957ca6f3719e1b2b237dcc53e50e Mon Sep 17 00:00:00 2001 From: Alexander Borisov Date: Mon, 1 Jun 2020 18:09:29 +0300 Subject: [PATCH] Fixed grammar introduced in 86f55a7dc4a4. --- src/njs_parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/njs_parser.c b/src/njs_parser.c index 20343510..c1d75280 100644 --- a/src/njs_parser.c +++ b/src/njs_parser.c @@ -467,10 +467,10 @@ njs_inline njs_int_t njs_parser_not_supported(njs_parser_t *parser, njs_lexer_token_t *token) { if (token->type != NJS_TOKEN_END) { - njs_parser_syntax_error(parser, "Token \"%V\" not support " + njs_parser_syntax_error(parser, "Token \"%V\" not supported " "in this version", &token->text); } else { - njs_parser_syntax_error(parser, "Not support in this version"); + njs_parser_syntax_error(parser, "Not supported in this version"); } return NJS_DONE; -- 2.47.3