From: Alexander Borisov Date: Mon, 1 Jun 2020 15:09:29 +0000 (+0300) Subject: Fixed grammar introduced in 86f55a7dc4a4. X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=209e20c7b75e957ca6f3719e1b2b237dcc53e50e;p=njs.git Fixed grammar introduced in 86f55a7dc4a4. --- 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;