diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2015-02-25 15:07:48 -0600 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2015-02-25 15:07:48 -0600 |
commit | 0c146eb2ed33edd45b5923c71ad6be953812748b (patch) | |
tree | 8323b9b2edab5c5a082f66a7e911b3963b862a27 | |
parent | aae2bf7a88f4ae2b05ce35e0b5ae014e1141b583 (diff) | |
parent | 08b0596e45feff0b292f295f52d82a80ab8624c2 (diff) |
Merge pull request #974 from qw3rtman/add-semicolon
[Javascript/en] Add semicolon to maximine consistency.
-rw-r--r-- | javascript.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript.html.markdown b/javascript.html.markdown index f61e6c74..95808d05 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -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)) |