From aabdbfaab93b53095b092a288142bfe625c2f0dd Mon Sep 17 00:00:00 2001 From: Samuel Plumppu Date: Sat, 4 Feb 2017 02:54:28 +0100 Subject: [PATCH] fix(challenge): Add semicolons to "OOP: Inherit from a Supertype" --- .../object-oriented-programming.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json b/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json index c091f47dd71..62cb545880a 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json +++ b/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json @@ -660,8 +660,8 @@ "", "// Add your code below this line", "", - "let duck", - "let beagle", + "let duck; // Change this line", + "let beagle; // Change this line", "", "duck.eat(); // Should print \"nom nom nom\"", "beagle.eat(); // Should print \"nom nom nom\" " @@ -992,4 +992,4 @@ "translations": {} } ] -} \ No newline at end of file +}