Skip to content

Commit

Permalink
Merge branch 'main' into update-instructions-squeaky
Browse files Browse the repository at this point in the history
  • Loading branch information
jagdish-15 authored Nov 5, 2024
2 parents a4800fe + 1338484 commit db80142
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
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
1 change: 1 addition & 0 deletions exercises/practice/complex-numbers/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"aadityakulkarni",
"FridaTveit",
"jackattack24",
"jagdish-15",
"jmrunkle",
"kytrinyx",
"lemoncurry",
Expand Down

0 comments on commit db80142

Please sign in to comment.