Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
bowbahdoe committed Sep 27, 2024
1 parent 958df4c commit 622315b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arrays_ii/populate_arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ without any other interesting logic, you can use `Arrays.fill`.

```java
~void main() {
int[] allNines = new char[123];
int[] allNines = new int[123];
Arrays.fill(allNines, 9);

for (int i = 0; i < allNines.length; i++) {
Expand Down

0 comments on commit 622315b

Please sign in to comment.