Skip to content

Commit

Permalink
Fix typo in script manual
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderMertens committed Dec 16, 2024
1 parent 859e79b commit 14ab1da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/FlecsScript.md
Original file line number Diff line number Diff line change
Expand Up @@ -704,9 +704,9 @@ The following operators are supported in expressions, in order of precedence:
| `==` | Equality | `10 == 20` |
| `!=` | Not equal | `10 != 20` |
| `&` | Bitwise AND | `2 & 6` |
| `\|` | Bitwise OR | `2 | 4` |
| `|` | Bitwise OR | `2 | 4` |
| `&&` | Logical AND | `true && false` |
| `\|\|` | Logical OR | `true || false` |
| `||` | Logical OR | `true || false` |
### Values
The following table lists the different kinds of values that are supported in expressions:
Expand Down

0 comments on commit 14ab1da

Please sign in to comment.