Skip to content

Commit 720cc90

Browse files
authored
Fix missing semicolen
Update operator_precedence.md
1 parent 61252b5 commit 720cc90

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)