Removed unnecessary parenthesis

This commit is contained in:
Manse 2024-04-04 11:12:04 -03:00 committed by GitHub
parent af54a25a92
commit e2af10ba43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -301,17 +301,17 @@ predicate-func:
| date-predicate
| iso-date-predicate
equal-predicate: ("==") sp predicate-value
equal-predicate: "==" sp predicate-value
not-equal-predicate: ("!=") sp predicate-value
not-equal-predicate: "!=" sp predicate-value
greater-predicate: (">") sp (number | quoted-string)
greater-predicate: ">" sp (number | quoted-string)
greater-or-equal-predicate: (">=") sp sp* (number | quoted-string)
greater-or-equal-predicate: ">=" sp sp* (number | quoted-string)
less-predicate: ("<") sp (number | quoted-string)
less-predicate: "<" sp (number | quoted-string)
less-or-equal-predicate: ("<=") sp (number | quoted-string)
less-or-equal-predicate: "<=" sp (number | quoted-string)
start-with-predicate: "startsWith" sp (quoted-string | oneline-hex | oneline-base64)