Minor typo

Remove extra dot
This commit is contained in:
Prayag Verma
2016-01-30 10:42:33 +05:30
parent 51510a43c8
commit 7eb7b78513

View File

@@ -683,7 +683,7 @@ Other Style Guides
> Why? It creates a version of the function that executes in the context of `this`, which is usually what you want, and is a more concise syntax.
> Why not? If you have a fairly complicated function, you might move that logic out into its own function declaration..
> Why not? If you have a fairly complicated function, you might move that logic out into its own function declaration.
```javascript
// bad