Skip to content

Commit 515d7c7

Browse files
committed
Fix function descriptions
1 parent 28b06f4 commit 515d7c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ console.warn(${1:obj});
6565

6666
```javascript
6767
${1:document}.addEventListener('${2:event}', function(e) {
68-
${3}
68+
${3:// body...}
6969
});
7070
```
7171
@@ -165,15 +165,15 @@ ${1:document}.textContent = '${2}';
165165
166166
```javascript
167167
function ${1:methodName} (${2:arguments}) {
168-
${4}
168+
${3:// body...}
169169
}
170170
```
171171
172172
### [pr] prototype
173173
174174
```javascript
175175
${1:ClassName}.prototype.${2:methodName} = function(${3:arguments}) {
176-
${4}
176+
${4:// body...}
177177
}
178178
```
179179

0 commit comments

Comments
 (0)