summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam <adam@adambard.com>2013-07-01 11:03:36 -0700
committerAdam <adam@adambard.com>2013-07-01 11:03:36 -0700
commite5d2150714a7145e539245f305303aa39962df7c (patch)
treed63746f46ca864784d473bd129468ae6a2cedf1a
parent83900dc50427bddebae92545f82530e555fe6365 (diff)
Change name of java file to be a camelcase class name
-rw-r--r--java.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/java.html.markdown b/java.html.markdown
index 206f9cbe..712233ba 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -6,7 +6,7 @@ author: Jake Prather
author_url: http://github.com/JakeHP
-filename: learnjava.java
+filename: LearnJava.java
---
@@ -24,9 +24,9 @@ import java.util.ArrayList;
// Import all classes inside of java.lang package
import java.security.*;
-// Inside of the learnjava class, is your program's
+// Inside of the LearnJava class, is your program's
// starting point. The main method.
-public class learnjava
+public class LearnJava
{
//main method
public static void main (String[] args)