1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 13:38:38 +01:00

Spelling error

From datetype to datatype
This commit is contained in:
Kado 2014-08-07 09:55:27 +03:00
parent 03e1da713c
commit 09b1930986

View File

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