Skip to content

Commit

Permalink
Fix https urls
Browse files Browse the repository at this point in the history
  • Loading branch information
BoykoAlex committed Nov 1, 2024
1 parent b31e634 commit 342f9f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions headless-services/commons/jpql/grammars/PostgreSqlLexer.g4
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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"]*)?;
Expand Down

0 comments on commit 342f9f7

Please sign in to comment.