Skip to content

Commit 1ffb7dd

Browse files
committed
Fix Bug in ast.lua
1 parent 5b4457b commit 1ffb7dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prometheus/ast.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ local astKindExpressionLookup = {
8888
[AstKind.SubExpression] = 8;
8989
[AstKind.MulExpression] = 7;
9090
[AstKind.DivExpression] = 7;
91-
[AstKind.ModExpression] = 6;
91+
[AstKind.ModExpression] = 7;
9292
[AstKind.NotExpression] = 5;
9393
[AstKind.LenExpression] = 5;
9494
[AstKind.NegateExpression] = 5;

0 commit comments

Comments
 (0)