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) {",