From 1aa019aec0f38ada950c1af20a36e6bf3ba69d68 Mon Sep 17 00:00:00 2001 From: Evan Jacobs Date: Thu, 26 Jan 2017 11:56:52 -0500 Subject: [PATCH] Try a more official-looking set of license headers --- examples/module/__tests__/index.js | 7 ++++++- examples/module/sample/correct.js | 8 +++++++- examples/module/sample/wrong.js | 8 +++++++- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/examples/module/__tests__/index.js b/examples/module/__tests__/index.js index 920370139bf0..cae106080695 100644 --- a/examples/module/__tests__/index.js +++ b/examples/module/__tests__/index.js @@ -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'; diff --git a/examples/module/sample/correct.js b/examples/module/sample/correct.js index 705959e72858..3065ff045430 100644 --- a/examples/module/sample/correct.js +++ b/examples/module/sample/correct.js @@ -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 '👏'; diff --git a/examples/module/sample/wrong.js b/examples/module/sample/wrong.js index 51ff37edec03..3085c33248b4 100644 --- a/examples/module/sample/wrong.js +++ b/examples/module/sample/wrong.js @@ -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 = '😒';