Skip to content

Commit af832ca

Browse files
authored
Fix missing semicolons (#52)
1 parent 8d942cc commit af832ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/arrays/printing_the_contents_of_an_array.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ String[] factions = { "empire", "stormcloaks", "dragons" };
4949

5050
int index = 0;
5151
while (index < factions.length) {
52-
System.out.println(factions[index])
53-
index++
52+
System.out.println(factions[index]);
53+
index++;
5454
}
5555
```
5656

0 commit comments

Comments
 (0)