Skip to content

Commit fc0d740

Browse files
authored
Fix comment syntax in build-all-methods.js (#304)
Fixes #303
1 parent 49cf00d commit fc0d740

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/all-methods.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
<!-- This file is built by build-all-methods.js; do not edit it directly. -->
3+
/* This file is built by build-all-methods.js; do not edit it directly. */
44
module.exports = [
55
'add',
66
'addBack',

tools/build-all-methods.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const allMethods = Object.keys( $.fn )
2222
fs.writeFile(
2323
'src/all-methods.js',
2424
'\'use strict\';\n\n' +
25-
'<!-- This file is built by build-all-methods.js; do not edit it directly. -->\n' +
25+
'/* This file is built by build-all-methods.js; do not edit it directly. */\n' +
2626
'module.exports = ' +
2727
JSON.stringify( allMethods, null, '\t' ).replace( /"/g, '\'' ) +
2828
';\n',

0 commit comments

Comments
 (0)