From d865716cf111af21fd121cbdd7dcfc578850b127 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 --- seed/challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index 0247de2a6f..c12e9a7622 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/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++;", "}",