Skip to content

Commit

Permalink
Merge pull request #5 from juliepagano/patch-1
Browse files Browse the repository at this point in the history
Modify explanation of while loop
  • Loading branch information
izzyjohnston committed Mar 8, 2013
2 parents 65c8c9a + bc027c7 commit 1eb311f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion class2.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ <h3>Loops</h3>

<section>
<h3>The while loop</h3>
<p>The while loop tells JS to repeat statements until a condition is true:</p>
<p>The while loop tells JS to repeat statements while a condition is true:</p>
<pre><code contenteditable class = "javascript">
while (expression) {
// statements to repeat
Expand Down

0 comments on commit 1eb311f

Please sign in to comment.