diff options
author | Nami-Doc <vendethiel@hotmail.fr> | 2014-08-07 09:07:44 +0200 |
---|---|---|
committer | Nami-Doc <vendethiel@hotmail.fr> | 2014-08-07 09:07:44 +0200 |
commit | 5a42a4e3010b22ab5dd7507b0d8997a7b5eb123b (patch) | |
tree | 991d20e0e7a9cc74b9d807ff268706eade419425 /java.html.markdown | |
parent | 03e1da713c71466f0a53b8631afa8cb2403552e7 (diff) | |
parent | 09b19309862cde84d68e05f1f3aa5e534a9185ae (diff) |
Merge pull request #712 from kdamball/patch-1
Spelling error
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 50875491..3484aee5 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -103,7 +103,7 @@ public class LearnJava { //The array size must be decided upon instantiation //The following formats work for declaring an arrow //<datatype> [] <var name> = new <datatype>[<array size>]; - //<datetype> <var name>[] = new <datatype>[<array size>]; + //<datatype> <var name>[] = new <datatype>[<array size>]; int [] intArray = new int[10]; String [] stringArray = new String[1]; boolean boolArray [] = new boolean[100]; |