Skip to content

Commit 342f9f7

Browse files
committed
Fix https urls
1 parent b31e634 commit 342f9f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

headless-services/commons/jpql/grammars/PostgreSqlLexer.g4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ https://github.com/tunnelvisionlabs/antlr4-grammar-postgresql/blob/master/src/co
3535

3636
lexer grammar PostgreSqlLexer;
3737
/* Reference:
38-
* http://www.postgresql.org/docs/9.3/static/sql-syntax-lexical.html
38+
* https://www.postgresql.org/docs/9.3/static/sql-syntax-lexical.html
3939
*/
4040

4141
options {
@@ -1592,7 +1592,7 @@ UnterminatedBlockComment:
15921592
15931593
//
15941594
1595-
// http://www.postgresql.org/docs/9.3/static/app-psql.html
1595+
// https://www.postgresql.org/docs/9.3/static/app-psql.html
15961596
15971597
MetaCommand: '\\' (~ [\r\n\\"] | '"' ~ [\r\n"]* '"')* ('"' ~ [\r\n"]*)?;
15981598

0 commit comments

Comments
 (0)