Skip to content

Commit 9f2a370

Browse files
Fix missing semicolen (#50)
Update operator_precedence.md Co-authored-by: Ethan McCue <[email protected]>
1 parent af832ca commit 9f2a370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/boolean/operator_precedence.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ For booleans `!` always happens first. This is followed by `&&` and then by `||`
99

1010
```java,no_run
1111
boolean a = true;
12-
boolean b = false
12+
boolean b = false;
1313
boolean c = false;
1414
1515
// just as 2 + 5 * 3 "evaluates" 5 * 3 before adding 2

0 commit comments

Comments
 (0)