mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 09:41:36 +00: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:
parent
0f8b48e977
commit
08b0596e45
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user