summaryrefslogtreecommitdiffhomepage
path: root/java.html.markdown
diff options
context:
space:
mode:
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 3339b6d1..206f9cbe 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -22,7 +22,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 java.lang.*;
+import java.security.*;
// Inside of the learnjava class, is your program's
// starting point. The main method.