diff options
author | oscarb-se <github@oscarb.se> | 2016-02-08 02:54:41 +0100 |
---|---|---|
committer | oscarb-se <github@oscarb.se> | 2016-02-08 02:54:41 +0100 |
commit | 2b2951d0e0ae4de8f212ff4f9ee8c77db8e9458d (patch) | |
tree | 98f3fe0adea30256a7c2305281d90653158c5873 | |
parent | db28c6b6ded4fb72a5fc41a3f1e3f17cd528aa2c (diff) |
Fixed statement about many classes in one file
Fixed statement on line 441 to say that it is _not_ good practice to keep many classes in the same file.
-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 74140120..073135c9 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -438,7 +438,7 @@ public class LearnJava { // You can include other, non-public outer-level classes in a .java file, -// but it is good practice. Instead split classes into separate files. +// but it is not good practice. Instead split classes into separate files. // Class Declaration Syntax: |