@@ -214,14 +214,14 @@ The operators have the following precedence, from highest to lowest:
214214
215215| Precedence | Associativity | Operators |
216216| -----------------------------| ---------------| --------------------------------------|
217- | 8: pipe | left-to-right | ` \| ` |
218- | 7: exponentiation | n/a | ` ^ ` |
219- | 6: multiplicative operators | left-to-right | ` * ` , ` / ` , ` % ` |
220- | 5: additive operators | left-to-right | ` + ` , ` - ` |
221- | 4: relational operators | n/a | ` > ` , ` >= ` , ` < ` , ` <= ` , ` in ` , ` not in ` |
222- | 3: equality operators | n/a | ` == ` , ` != ` |
223- | 2: and | left-to-right | ` and ` |
224- | 1: or | left-to-right | ` or ` |
217+ | 8: exponentiation | n/a | ` ^ ` |
218+ | 7: multiplicative operators | left-to-right | ` * ` , ` / ` , ` % ` |
219+ | 6: additive operators | left-to-right | ` + ` , ` - ` |
220+ | 5: relational operators | n/a | ` > ` , ` >= ` , ` < ` , ` <= ` , ` in ` , ` not in ` |
221+ | 4: equality operators | n/a | ` == ` , ` != ` |
222+ | 3: and | left-to-right | ` and ` |
223+ | 2: or | left-to-right | ` or ` |
224+ | 1: pipe | left-to-right | ` \| ` |
225225
226226See section [ Function reference] ( reference/functions.md ) for a detailed overview of all available functions and operators.
227227
0 commit comments