From 342f9f7fe2f1de76e6800b64ff135722ed597d6a Mon Sep 17 00:00:00 2001 From: aboyko Date: Fri, 1 Nov 2024 15:08:37 -0400 Subject: [PATCH] Fix https urls --- headless-services/commons/jpql/grammars/PostgreSqlLexer.g4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headless-services/commons/jpql/grammars/PostgreSqlLexer.g4 b/headless-services/commons/jpql/grammars/PostgreSqlLexer.g4 index a2928909f..2b7484726 100644 --- a/headless-services/commons/jpql/grammars/PostgreSqlLexer.g4 +++ b/headless-services/commons/jpql/grammars/PostgreSqlLexer.g4 @@ -35,7 +35,7 @@ https://github.com/tunnelvisionlabs/antlr4-grammar-postgresql/blob/master/src/co lexer grammar PostgreSqlLexer; /* Reference: - * http://www.postgresql.org/docs/9.3/static/sql-syntax-lexical.html + * https://www.postgresql.org/docs/9.3/static/sql-syntax-lexical.html */ options { @@ -1592,7 +1592,7 @@ UnterminatedBlockComment: // -// http://www.postgresql.org/docs/9.3/static/app-psql.html +// https://www.postgresql.org/docs/9.3/static/app-psql.html MetaCommand: '\\' (~ [\r\n\\"] | '"' ~ [\r\n"]* '"')* ('"' ~ [\r\n"]*)?;