You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guards.md
+1-14Lines changed: 1 addition & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ The mini-language is based on Python's built-in language and the [`ast`](https:/
77
77
4.`!=` — Not equal.
78
78
5.`<` — Lower than.
79
79
6.`<=` — Lower than or equal.
80
-
- See the [comparisons](https://docs.python.org/3/reference/expressions.html#comparisons) from Python's.
80
+
- All comparison operations in Python have the same priority.
81
81
82
82
3.**Parentheses for precedence**:
83
83
- When operators with the same precedence appear in the expression, evaluation proceeds from left to right, unless parentheses specify a different order.
@@ -100,19 +100,6 @@ Being used on a transition definition:
100
100
start.to(end, cond="frodo_has_ring and gandalf_present or !sauron_alive")
101
101
```
102
102
103
-
#### Summary of grammar rules
104
-
105
-
The mini-language is formally specified as follows:
0 commit comments