Merge pull request #333 from tomekwi/patch-6

Add missing semicolon
This commit is contained in:
Josh Perez
2015-05-05 01:21:10 -07:00

View File

@@ -586,7 +586,7 @@
// good
[1, 2, 3].map((x) => {
return x * x
return x * x;
});
```