1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 03:50:32 +02:00

Add semicolon to maximine consistency.

Added a semicolon to conform with statement at top of guide:

// Because those cases can cause unexpected results, we'll keep on using
// semicolons in this guide.
This commit is contained in:
Nimit Kalra
2015-02-25 10:03:19 -06:00
parent 0f8b48e977
commit 08b0596e45

View File

@@ -207,7 +207,7 @@ while (true){
}
// Do-while loops are like while loops, except they always run at least once.
var input
var input;
do {
input = getInput();
} while (!isValid(input))