From d8347b3b7c9098390faf81194937900dca3b8a14 Mon Sep 17 00:00:00 2001 From: Michael Krebs Date: Tue, 18 Aug 2015 02:05:53 -0400 Subject: [PATCH] fix #2011 --- .../object-oriented-and-functional-programming.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/seed/challenges/object-oriented-and-functional-programming.json b/seed/challenges/object-oriented-and-functional-programming.json index 307563795b..c49dd082d8 100644 --- a/seed/challenges/object-oriented-and-functional-programming.json +++ b/seed/challenges/object-oriented-and-functional-programming.json @@ -17,7 +17,7 @@ "difficulty":0, "description":[ "Before we dive into Object Oriented Programming, let's revisit JavaScript objects.", - "Give your motorBike object a wheels, engine and seats attribute and set them to numbers." + "Give your motorBike object a wheels, engines and seats attribute and set them to numbers." ], "tests":[ "assert(typeof(motorBike.engines) === 'number', 'engines should be have a engines attribute set to a number.');", @@ -54,7 +54,7 @@ "difficulty":0, "description":[ "We are also able to create objects using constructor functions.", - "Give your motorBike object a wheels, engine and seats attribute and set them to numbers." + "Give your motorBike object a wheels, engines and seats attribute and set them to numbers." ], "tests":[ "assert(typeof((new MotorBike()).engines) === 'number', 'engines should be have a engines attribute set to a number.');", @@ -62,7 +62,7 @@ "assert(typeof((new MotorBike()).seats) === 'number', 'seats should be have a engines attribute set to a number.');" ], "challengeSeed":[ - "// Let's add the properties engine and seats to the car in the same way that the property wheels has been added below. They should both be numbers.", + "// Let's add the properties engines and seats to the car in the same way that the property wheels has been added below. They should both be numbers.", "var Car = function() {", " this.wheels = 4;", " this.engines = 1;",