Skip to content

Commit db80142

Browse files
authored
Merge branch 'main' into update-instructions-squeaky
2 parents a4800fe + 1338484 commit db80142

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

concepts/arrays/about.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ int secondElement = twoInts[1];
4444
Accessing an index that is outside of the valid indexes for the array results in an `IndexOutOfBoundsException`.
4545

4646
Arrays can be manipulated by either calling an array instance's methods or properties, or by using the static methods defined in the `Arrays` class (typically only used in generic code).
47-
The most commonly used property for arrays is its length which can be accessed like this:
47+
The `length` property holds the length of an array.
48+
It can be accessed like this:
4849

4950
```java
5051
int arrayLength = someArray.length;

concepts/arrays/introduction.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ int secondElement = twoInts[1];
4444
Accessing an index that is outside of the valid indexes for the array results in an `IndexOutOfBoundsException`.
4545

4646
Arrays can be manipulated by either calling an array instance's methods or properties, or by using the static methods defined in the `Arrays` class (typically only used in generic code).
47-
The most commonly used property for arrays is its length which can be accessed like this:
47+
The `length` property holds the length of an array.
48+
It can be accessed like this:
4849

4950
```java
5051
int arrayLength = someArray.length;

exercises/concept/bird-watcher/.docs/introduction.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ int secondElement = twoInts[1];
4646
Accessing an index that is outside of the valid indexes for the array results in an `IndexOutOfBoundsException`.
4747

4848
Arrays can be manipulated by either calling an array instance's methods or properties, or by using the static methods defined in the `Arrays` class (typically only used in generic code).
49-
The most commonly used property for arrays is its length which can be accessed like this:
49+
The `length` property holds the length of an array.
50+
It can be accessed like this:
5051

5152
```java
5253
int arrayLength = someArray.length;

exercises/practice/complex-numbers/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"aadityakulkarni",
77
"FridaTveit",
88
"jackattack24",
9+
"jagdish-15",
910
"jmrunkle",
1011
"kytrinyx",
1112
"lemoncurry",

0 commit comments

Comments
 (0)