diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2014-09-01 11:01:30 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2014-09-01 11:01:30 -0500 |
commit | 12c9653b03271abbd13906058ece129c13f9c055 (patch) | |
tree | b6abc3e0642f0412ca4dba0520338560d7ed8a94 | |
parent | dfaa054ed780e1f9e3c0faf405769f70ac0e4fdd (diff) |
Fix arrow => array java typo.
-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 3484aee5..dffc3828 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -101,7 +101,7 @@ public class LearnJava { // Arrays //The array size must be decided upon instantiation - //The following formats work for declaring an arrow + //The following formats work for declaring an array //<datatype> [] <var name> = new <datatype>[<array size>]; //<datatype> <var name>[] = new <datatype>[<array size>]; int [] intArray = new int[10]; |