spelling: disjunction

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2024-02-06 14:29:59 -05:00
parent f498e87b04
commit f2d0e9abf5

View file

@ -244,7 +244,7 @@ if handled_request is pause1:
...
```
### Exclusive disjuction (`^`)
### Exclusive disjunction (`^`)
When two expectations are exclusively disjuncted: `(A ^ B)` - the resulting expectation is realized at the first occurrence at which either `A` or `B` is realized, but not both. Thus, the expectation:
```py