summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-07-01 18:23:38 -0700
committerAdam Bard <github@adambard.com>2013-07-01 18:23:38 -0700
commit1561ad5116380cc8985335607bbcab444622f3e0 (patch)
tree2874d477fb97619876c1d373d798b15ca4fbc5fe
parentbd7390d7990afc452cb72a720885c49afb617d79 (diff)
parentd22f6fc28740495f3923a5d8839fede03b2be0df (diff)
Merge pull request #82 from Jakehp/patch-2
typo
-rw-r--r--java.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/java.html.markdown b/java.html.markdown
index ab69d4b4..f4ab4220 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -21,7 +21,7 @@ Multi-line comments look like this.
// Import ArrayList class inside of the java.util package
import java.util.ArrayList;
-// Import all classes inside of java.lang package
+// Import all classes inside of java.security package
import java.security.*;
// Each .java file contains one public class, with the same name as the file.