Skip to content

Commit

Permalink
Try a more official-looking set of license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Jacobs committed Jan 26, 2017
1 parent 2e8bf19 commit 1aa019a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
7 changes: 6 additions & 1 deletion examples/module/__tests__/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright 2017-present Facebook. All Rights Reserved.
/**
* Copyright (c) 2017-present, Facebook, Inc. All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
'use strict';

import Contents from '../sample';
Expand Down
8 changes: 7 additions & 1 deletion examples/module/sample/correct.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
// Copyright 2017-present Facebook. All Rights Reserved.
/**
* Copyright (c) 2017-present, Facebook, Inc. All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/

'use strict';

export default '👏';
8 changes: 7 additions & 1 deletion examples/module/sample/wrong.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
// Copyright 2017-present Facebook. All Rights Reserved.
/**
* Copyright (c) 2017-present, Facebook, Inc. All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/

'use strict';

module.exports = '😒';

0 comments on commit 1aa019a

Please sign in to comment.