mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-09 00:06:47 +02:00
Fix Spacing Inconsistency
This commit is contained in:
@@ -250,7 +250,7 @@ public class LearnJava {
|
|||||||
|
|
||||||
// If statements are c-like
|
// If statements are c-like
|
||||||
int j = 10;
|
int j = 10;
|
||||||
if (j == 10){
|
if (j == 10) {
|
||||||
System.out.println("I get printed");
|
System.out.println("I get printed");
|
||||||
} else if (j > 10) {
|
} else if (j > 10) {
|
||||||
System.out.println("I don't");
|
System.out.println("I don't");
|
||||||
|
Reference in New Issue
Block a user