diff options
author | Corban Mailloux <github@corb.co> | 2015-10-27 22:18:02 -0400 |
---|---|---|
committer | Corban Mailloux <github@corb.co> | 2015-10-27 22:18:02 -0400 |
commit | 61aa6a3e0146faed45230111b0bdcf1b0c2209f8 (patch) | |
tree | fe61469e2d1382c60b1ccd76025bba9a9a3d0d52 /javascript.html.markdown | |
parent | e65899cafb9edbd4fbf5c37a3f6462b999bd08cb (diff) |
"wan't" -> "want"
Diffstat (limited to 'javascript.html.markdown')
-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; |