summaryrefslogtreecommitdiffhomepage
path: root/java.html.markdown
diff options
context:
space:
mode:
authorC. Bess <cbess@cfaulks-air.pk5001z>2014-09-02 18:52:04 -0500
committerC. Bess <cbess@cfaulks-air.pk5001z>2014-09-02 18:52:04 -0500
commit313c0daf05ccb5624ae5009565eb01c5ddeaa022 (patch)
tree5f40a62e42e3a00fbe255328558dfcca7c3dd989 /java.html.markdown
parentb50d4443cdca87e3342e2364c9e6afd2d7fce7d2 (diff)
parent0b3f3e01e245ab2f73226fe4ba09d567ca76aa98 (diff)
- fix merge swift conflict
- Merge master
Diffstat (limited to 'java.html.markdown')
-rw-r--r--java.html.markdown2
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];