diff options
author | Adam Bard <github@adambard.com> | 2015-10-17 09:10:23 +0800 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2015-10-17 09:10:23 +0800 |
commit | 0e6d9f6fe9aeffc64c3adad3e4a0ee1cc0d1dd88 (patch) | |
tree | 3d407a2c2f70ff60f8a35bf146edaf2181d5f462 | |
parent | d7124d029cd2bd33b152057e1884065cd6d2ed0f (diff) | |
parent | 79008d76c9d6016bdb80d789a4ed0269105a7aab (diff) |
Merge pull request #1580 from chaityabshah/master
Java/EN - Fix Spacing Inconsistency
-rw-r--r-- | java.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java.html.markdown b/java.html.markdown index 6aff5b6f..fa5cf8fc 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -250,7 +250,7 @@ public class LearnJava { // If statements are c-like int j = 10; - if (j == 10){ + if (j == 10) { System.out.println("I get printed"); } else if (j > 10) { System.out.println("I don't"); |