diff options
author | Adam Brenecki <adam@brenecki.id.au> | 2015-10-28 13:17:03 +1030 |
---|---|---|
committer | Adam Brenecki <adam@brenecki.id.au> | 2015-10-28 13:17:03 +1030 |
commit | 1893cc326c01205d2b619278d5fb9869775df9e1 (patch) | |
tree | fe61469e2d1382c60b1ccd76025bba9a9a3d0d52 | |
parent | e65899cafb9edbd4fbf5c37a3f6462b999bd08cb (diff) | |
parent | 61aa6a3e0146faed45230111b0bdcf1b0c2209f8 (diff) |
Merge pull request #1836 from corbanmailloux/patch-1
[javascript/en] "wan't" -> "want"
-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; |