Skip to content

Commit

Permalink
Adds docs for #26
Browse files Browse the repository at this point in the history
  • Loading branch information
zenorocha committed Feb 10, 2016
1 parent 0e2ab90 commit f5810b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ ${1:ClassName}.prototype.${2:methodName} = function(${3:arguments}) {
### [iife] immediately-invoked function expression

```javascript
(function(window, document, undefined) {
(function(${1:window}, ${2:document}) {
${1}
})(window, document);
})(${1:window}, ${2:document});
```

### [call] function call
Expand Down

0 comments on commit f5810b2

Please sign in to comment.