Skip to content

Commit

Permalink
Fix missing semicolons (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArkhamCookie authored Sep 5, 2024
1 parent 8d942cc commit af832ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arrays/printing_the_contents_of_an_array.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ String[] factions = { "empire", "stormcloaks", "dragons" };

int index = 0;
while (index < factions.length) {
System.out.println(factions[index])
index++
System.out.println(factions[index]);
index++;
}
```

Expand Down

0 comments on commit af832ca

Please sign in to comment.