diff options
author | Adam Bard <github@adambard.com> | 2013-07-02 08:55:22 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-07-02 08:55:22 -0700 |
commit | dceba637b3f86026c752bb8a96efba914bd9f576 (patch) | |
tree | 19f4987bc0154383f4a906e29d40acc70bec93d3 /java.html.markdown | |
parent | 05d3fa73aef6f0a4c629d72f0474cd8e7ddc444d (diff) | |
parent | a2e2e202f4d91a97ba81c7437958586b69ceb56e (diff) |
Merge pull request #86 from soniah/master
Java - clarify extends
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 f4ab4220..8ba48d73 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -329,7 +329,7 @@ class Bicycle { } } // end class Bicycle -// Use `extends` to extend a class +// PennyFarthing is a subclass of Bicycle class PennyFarthing extends Bicycle { // (Penny Farthings are those bicycles with the big front wheel. // They have no gears.) |