Skip to content

Commit adaabbe

Browse files
Merge pull request rage#221 from adikaiser/patch-2
added missing semicolon
2 parents a548a67 + 6c76c5f commit adaabbe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

data/part-4/1-introduction-to-object-oriented-programming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1521,7 +1521,7 @@ public class Main {
15211521
antti.growOlder();
15221522

15231523
System.out.println("Pekka's age: " + pekka.returnAge());
1524-
System.out.println("Antti's age: " + antti.returnAge())
1524+
System.out.println("Antti's age: " + antti.returnAge());
15251525
int combined = pekka.returnAge() + antti.returnAge();
15261526

15271527
System.out.println("Pekka's and Antti's combined age " + combined + " years");

0 commit comments

Comments
 (0)