Merge pull request #5815 from duffn/fix/comparative-language-typo

Fix comparitive language typo in Waypoint
pull/5820/merge
Rex Schrader 2016-01-03 09:38:30 -08:00
commit 63c104124f
1 changed files with 1 additions and 1 deletions

View File

@ -2812,7 +2812,7 @@
"title": "Introducing Else If Statements", "title": "Introducing Else If Statements",
"description": [ "description": [
"If you have multiple conditions that need to be addressed, you can chain <code>if</code> statements together with <code>else if</code> statements.", "If you have multiple conditions that need to be addressed, you can chain <code>if</code> statements together with <code>else if</code> statements.",
"<blockquote>if (num > 15) {<br> return \"Bigger then 15\";<br>} else if (num < 5) {<br> return \"Smaller than 5\";<br>} else {<br> return \"Between 5 and 15\";<br>}</blockquote>", "<blockquote>if (num > 15) {<br> return \"Bigger than 15\";<br>} else if (num < 5) {<br> return \"Smaller than 5\";<br>} else {<br> return \"Between 5 and 15\";<br>}</blockquote>",
"<h4>Instructions</h4>", "<h4>Instructions</h4>",
"Convert the logic to use <code>else if</code> statements." "Convert the logic to use <code>else if</code> statements."
], ],