From 3215c39b8beea34fab40423f059b8265ab54a96c Mon Sep 17 00:00:00 2001 From: Michael Krebs Date: Tue, 18 Aug 2015 00:17:56 -0400 Subject: [PATCH] fix #1986 --- challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json index 1096e02868..e71a6d45ab 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -832,7 +832,7 @@ "difficulty":"9.9825", "description":[ "You can run the same code multiple times by using a loop.", - "Another type of JavaScript loop is called a \"while loop\" because it runs \"while\" something is true, and stops once that something is no longer true.", + "Another type of JavaScript loop is called a \"while loop\", because it runs \"while\" something is true and stops once that something is no longer true.", "var ourArray = [];", "var i = 0;", "while(i < 5) {",