diff options
author | Geoff Liu <cangming.liu@gmail.com> | 2015-12-18 17:32:27 -0500 |
---|---|---|
committer | Geoff Liu <cangming.liu@gmail.com> | 2015-12-18 17:32:27 -0500 |
commit | 2dd5ade4024a9a6692e084058255de7d54865b97 (patch) | |
tree | f6f61da1a6303e8a87f90a4461fd65d4c6ad3777 /java.html.markdown | |
parent | 24e520a3cc680566942102189bd5e3458077ca3f (diff) | |
parent | 7c15eaefcdfe21809ebab893f6d8d6321188abf1 (diff) |
Merge pull request #1698 from chaityabshah/master
[Java/EN] Fix Spacing Inconsistency
Diffstat (limited to 'java.html.markdown')
-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 84978ecc..74140120 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -535,7 +535,7 @@ class PennyFarthing extends Bicycle { // (Penny Farthings are those bicycles with the big front wheel. // They have no gears.) - public PennyFarthing(int startCadence, int startSpeed){ + public PennyFarthing(int startCadence, int startSpeed) { // Call the parent constructor with super super(startCadence, startSpeed, 0, "PennyFarthing"); } |