From cc43a2ab713b1675dcde1b68422a06b24ce6141f Mon Sep 17 00:00:00 2001 From: Jeremy Gorniak Date: Tue, 18 Aug 2015 21:27:19 +1000 Subject: [PATCH 1/2] Fixed new waypoint description typo Small but important typo in challenge description for: Object Oriented and Functional Programming section Waypoint #1 - Declare JavaScript Objects as Variables --- challenges/object-oriented-and-functional-programming.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/object-oriented-and-functional-programming.json b/challenges/object-oriented-and-functional-programming.json index 307563795b..2d6c978e90 100644 --- a/challenges/object-oriented-and-functional-programming.json +++ b/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.');", From c9f561af86d5b0391d19db9a941625ed693beb3f Mon Sep 17 00:00:00 2001 From: Jeremy Gorniak Date: Tue, 18 Aug 2015 21:35:10 +1000 Subject: [PATCH 2/2] Fixed typo in waypoints #1 and #2 --- challenges/object-oriented-and-functional-programming.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/object-oriented-and-functional-programming.json b/challenges/object-oriented-and-functional-programming.json index 2d6c978e90..b599d6cd13 100644 --- a/challenges/object-oriented-and-functional-programming.json +++ b/challenges/object-oriented-and-functional-programming.json @@ -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.');",