Skip to content

Commit f5810b2

Browse files
committed
Adds docs for #26
1 parent 0e2ab90 commit f5810b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,9 @@ ${1:ClassName}.prototype.${2:methodName} = function(${3:arguments}) {
209209
### [iife] immediately-invoked function expression
210210

211211
```javascript
212-
(function(window, document, undefined) {
212+
(function(${1:window}, ${2:document}) {
213213
${1}
214-
})(window, document);
214+
})(${1:window}, ${2:document});
215215
```
216216

217217
### [call] function call

0 commit comments

Comments
 (0)