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:
parent
03e1da713c
commit
09b1930986
@ -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];
|
||||
|
Loading…
x
Reference in New Issue
Block a user