Skip to content

Commit b067fd8

Browse files
committed
Drop the "(c) in the copyright notice" of all banners. Fixes #107
1 parent 29c372c commit b067fd8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/banner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ module.exports = function( pkg, fileNames ) {
1010
today("isoDate") + "\n" +
1111
"* " + pkg.homepage + "\n" +
1212
"* Includes: " + fileNames.join(", ") + "\n" +
13-
"* Copyright (c) " + today("yyyy") + " " + pkg.author.name +
13+
"* Copyright " + today("yyyy") + " " + pkg.author.name +
1414
" Licensed " + _.pluck(pkg.licenses, "type").join(", ") + " */";
1515
};

test/banner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var pkg = {
2525
output = "/*! jQuery UI - v1.9.0 - " + today( "isoDate" ) + "\n" +
2626
"* http://jqueryui.com\n" +
2727
"* Includes: jquery.ui.autocomplete.js, jquery.ui.accordion.js\n" +
28-
"* Copyright (c) " + today( "yyyy" ) + " authors.txt Licensed MIT, GPL */";
28+
"* Copyright " + today( "yyyy" ) + " authors.txt Licensed MIT, GPL */";
2929

3030
module.exports = {
3131
"test: case 1": function( test ) {

0 commit comments

Comments
 (0)