From d3e610f6e278b51f779717d123d1356b01fcd894 Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Thu, 24 Dec 2015 12:59:03 +0530 Subject: [PATCH] Decrement a Number with Javascript --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 60c92b2796..3e420cfd82 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -419,7 +419,7 @@ "id": "56533eb9ac21ba0edf2244ad", "title": "Decrement a Number with Javascript", "description": [ - "You can easily decrement or decrease by one a Javascript variable with the -- operator.", + "You can easily decrement or decrease a variable by one with the -- operator.", "i--;", "is the equivilent of", "i = i - 1;",