Skip to content

Commit 02c565a

Browse files
authored
Add remainder operator to grammar (#6767)
Signed-off-by: Anders Eknert <[email protected]>
1 parent cb9d347 commit 02c565a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/content/policy-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1380,7 +1380,7 @@ set-compr = "{" term "|" query "}"
13801380
object-compr = "{" object-item "|" query "}"
13811381
infix-operator = assign-operator | bool-operator | arith-operator | bin-operator
13821382
bool-operator = "==" | "!=" | "<" | ">" | ">=" | "<="
1383-
arith-operator = "+" | "-" | "*" | "/"
1383+
arith-operator = "+" | "-" | "*" | "/" | "%"
13841384
bin-operator = "&" | "|"
13851385
assign-operator = ":=" | "="
13861386
ref = ( var | array | object | set | array-compr | object-compr | set-compr | expr-call ) { ref-arg }

0 commit comments

Comments
 (0)