Skip to content

Commit e558747

Browse files
committed
fix: pow bp
1 parent 3f3f590 commit e558747

File tree

1 file changed

+1
-1
lines changed
  • src/main/kotlin/io/typst/bukkit/kotlin/serialization/expression

1 file changed

+1
-1
lines changed

src/main/kotlin/io/typst/bukkit/kotlin/serialization/expression/BinaryOpType.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ enum class BinaryOpType(val bindingPowers: Pair<Int, Int>) {
55
MINUS(10 to 11),
66
MULTIPLY(20 to 21),
77
DIVIDE(20 to 21),
8-
POW(20 to 21),
8+
POW(30 to 29),
99
;
1010

1111
companion object {

0 commit comments

Comments
 (0)