Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion concepts/arrays/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ int secondElement = twoInts[1];
Accessing an index that is outside of the valid indexes for the array results in an `IndexOutOfBoundsException`.

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).
The most commonly used property for arrays is its length which can be accessed like this:
The `length` property holds the length of an array.
It can be accessed like this:

```java
int arrayLength = someArray.length;
Expand Down
3 changes: 2 additions & 1 deletion concepts/arrays/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ int secondElement = twoInts[1];
Accessing an index that is outside of the valid indexes for the array results in an `IndexOutOfBoundsException`.

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).
The most commonly used property for arrays is its length which can be accessed like this:
The `length` property holds the length of an array.
It can be accessed like this:

```java
int arrayLength = someArray.length;
Expand Down
3 changes: 2 additions & 1 deletion exercises/concept/bird-watcher/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ int secondElement = twoInts[1];
Accessing an index that is outside of the valid indexes for the array results in an `IndexOutOfBoundsException`.

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).
The most commonly used property for arrays is its length which can be accessed like this:
The `length` property holds the length of an array.
It can be accessed like this:

```java
int arrayLength = someArray.length;
Expand Down