Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
+-------------+---------------------------------+-------+
| Operation | Result | Notes |
+=============+=================================+=======+
-| ``x or y`` | if *x* is false, then *y*, else | \(1) |
-| | *x* | |
+| ``x or y`` | if *x* is true, then *x*, else | \(1) |
+| | *y* | |
+-------------+---------------------------------+-------+
| ``x and y`` | if *x* is false, then *x*, else | \(2) |
| | *y* | |