Fix arrow => array java typo.

This commit is contained in:
Levi Bostian 2014-09-01 11:01:30 -05:00
parent dfaa054ed7
commit 12c9653b03

View File

@ -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];