Skip to content

Commit 0061c67

Browse files
authored
Update about.md
1 parent f37d6a8 commit 0061c67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

concepts/arrays/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ 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+
Java has a built-in `length` property that returns the length of an array, which can be accessed like this:
4848

4949
```java
5050
int arrayLength = someArray.length;

0 commit comments

Comments
 (0)