From 5cedb1833a1142a4d54d23c5fa7dbc65987987cc Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Mon, 30 Nov 2015 11:07:21 -0800 Subject: [PATCH] Add space after `while` statement for consistency --- 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 0247de2a6f..c12e9a7622 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -994,7 +994,7 @@ "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) {", + "while (i < 5) {", "  ourArray.push(i);", "  i++;", "}",