diff options
| -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 dc573b0e..b54434e0 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -145,7 +145,7 @@ someOtherVar = 10;  // Variables declared without being assigned to are set to undefined.  var someThirdVar; // = undefined -// if you wan't to declare a couple of variables, then you could use a comma  +// if you want to declare a couple of variables, then you could use a comma   // separator  var someFourthVar = 2, someFifthVar = 4; | 
