Merge pull request #13126 from Greenheart/fix/oop-supertype-semicolons

fix(challenge): Add semicolons to "OOP: Inherit from a Supertype"
pull/18182/head
Dylan 2017-02-03 22:22:40 -06:00 committed by GitHub
commit 682cef18df
1 changed files with 2 additions and 2 deletions

View File

@ -660,8 +660,8 @@
"", "",
"// Add your code below this line", "// Add your code below this line",
"", "",
"let duck", "let duck; // Change this line",
"let beagle", "let beagle; // Change this line",
"", "",
"duck.eat(); // Should print \"nom nom nom\"", "duck.eat(); // Should print \"nom nom nom\"",
"beagle.eat(); // Should print \"nom nom nom\" " "beagle.eat(); // Should print \"nom nom nom\" "