Add space after while statement for consistency

This commit is contained in:
Eric Leung
2015-11-30 11:07:21 -08:00
parent e92d6f32b8
commit 5cedb1833a

View File

@ -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.", "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.",
"<code>var ourArray = [];</code>", "<code>var ourArray = [];</code>",
"<code>var i = 0;</code>", "<code>var i = 0;</code>",
"<code>while(i < 5) {</code>", "<code>while (i < 5) {</code>",
"<code>&nbsp;&nbsp;ourArray.push(i);</code>", "<code>&nbsp;&nbsp;ourArray.push(i);</code>",
"<code>&nbsp;&nbsp;i++;</code>", "<code>&nbsp;&nbsp;i++;</code>",
"<code>}</code>", "<code>}</code>",