Skip to content

Commit d713870

Browse files
authored
Fix license headers (#236)
There is no LICENSE.md file, but there is a LICENSE file.
1 parent d2fcc89 commit d713870

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+47
-47
lines changed

cmp/cmpopts/equate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// Package cmpopts provides common options for the cmp package.
66
package cmpopts

cmp/cmpopts/ignore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmpopts
66

cmp/cmpopts/sort.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmpopts
66

cmp/cmpopts/struct_filter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmpopts
66

cmp/cmpopts/util_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmpopts
66

cmp/cmpopts/xform.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmpopts
66

cmp/compare.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// Package cmp determines equality of values.
66
//

cmp/compare_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp_test
66

cmp/example_reporter_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp_test
66

cmp/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp_test
66

cmp/export_panic.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// +build purego
66

cmp/export_unsafe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// +build !purego
66

cmp/internal/diff/debug_disable.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// +build !cmp_debug
66

cmp/internal/diff/debug_enable.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// +build cmp_debug
66

cmp/internal/diff/diff.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// Package diff implements an algorithm for producing edit-scripts.
66
// The edit-script is a sequence of operations needed to transform one list

cmp/internal/diff/diff_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package diff
66

cmp/internal/flags/flags.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package flags
66

cmp/internal/flags/toolchain_legacy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// +build !go1.10
66

cmp/internal/flags/toolchain_recent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// +build go1.10
66

cmp/internal/function/func.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// Package function provides functionality for identifying function types.
66
package function

cmp/internal/function/func_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package function
66

cmp/internal/testprotos/protos.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package testprotos
66

cmp/internal/teststructs/foo1/foo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// Package foo is deliberately named differently than the parent directory.
66
// It contain declarations that have ambiguity in their short names,

cmp/internal/teststructs/foo2/foo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// Package foo is deliberately named differently than the parent directory.
66
// It contain declarations that have ambiguity in their short names,

cmp/internal/teststructs/project1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package teststructs
66

cmp/internal/teststructs/project2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package teststructs
66

cmp/internal/teststructs/project3.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package teststructs
66

cmp/internal/teststructs/project4.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package teststructs
66

cmp/internal/teststructs/structs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package teststructs
66

cmp/internal/value/name.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package value
66

cmp/internal/value/name_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package value
66

cmp/internal/value/pointer_purego.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// +build purego
66

cmp/internal/value/pointer_unsafe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2018, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
// +build !purego
66

cmp/internal/value/sort.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package value
66

cmp/internal/value/sort_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package value_test
66

cmp/internal/value/zero.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package value
66

cmp/internal/value/zero_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package value
66

cmp/options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp
66

cmp/options_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp
66

cmp/path.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp
66

cmp/report.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2017, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp
66

cmp/report_compare.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp
66

cmp/report_references.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp
66

cmp/report_reflect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp
66

cmp/report_slices.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp
66

cmp/report_text.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp
66

cmp/report_value.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2019, The Go Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style
3-
// license that can be found in the LICENSE.md file.
3+
// license that can be found in the LICENSE file.
44

55
package cmp
66

0 commit comments

Comments
 (0)