summaryrefslogtreecommitdiffhomepage
path: root/java.html.markdown
diff options
context:
space:
mode:
authorChaitya Shah <chaityabshah@users.noreply.github.com>2015-10-20 11:45:58 -0400
committerChaitya Shah <chaityabshah@users.noreply.github.com>2015-10-20 11:45:58 -0400
commit7c15eaefcdfe21809ebab893f6d8d6321188abf1 (patch)
tree0a1656f79aa960cd9c088147efcbb2e31749e59c /java.html.markdown
parentb354013dc9bcba5e76bd3cf720eae8af7d9eba89 (diff)
Fix Spacing Inconsistency
Fix spacing inconsistency in PennyFarthing Constructor
Diffstat (limited to 'java.html.markdown')
-rw-r--r--java.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/java.html.markdown b/java.html.markdown
index 38c9e490..a78aa9fc 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -519,7 +519,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");
}