From 87638ffd583ba69eb49ec76231b35d7081cff5c9 Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Fri, 25 Dec 2015 01:26:37 +0530 Subject: [PATCH] Assignment with Minus Equals --- .../basic-javascript.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index 7150adf527..8c1ace5224 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -621,10 +621,10 @@ "description": [ "Like the += operator, -= subtracts a number from a variable.", "myVar = myVar - 5;", - "Will subtract 5 from myVar. This can be rewritten as: ", + "will subtract 5 from myVar. This can be rewritten as: ", "myVar -= 5;", "

Instructions

", - "Convert the assignements for a, b, and c to use the -= operator." + "Convert the assignments for a, b, and c to use the -= operator." ], "releasedOn": "11/27/2015", "tests": [