Skip to content

Commit

Permalink
Fix missing semicolen
Browse files Browse the repository at this point in the history
Update operator_precedence.md
  • Loading branch information
ArkhamCookie authored Sep 4, 2024
1 parent 61252b5 commit 720cc90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/boolean/operator_precedence.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For booleans `!` always happens first. This is followed by `&&` and then by `||`

```java,no_run
boolean a = true;
boolean b = false
boolean b = false;
boolean c = false;
// just as 2 + 5 * 3 "evaluates" 5 * 3 before adding 2
Expand Down

0 comments on commit 720cc90

Please sign in to comment.