From 9836a5a0110241d32ecc0cd10f306ce9941cbf68 Mon Sep 17 00:00:00 2001 From: Joe Tsai Date: Wed, 23 Sep 2020 13:25:00 -0700 Subject: [PATCH] Fix license headers There is no LICENSE.md file, but there is a LICENSE file. --- cmp/cmpopts/equate.go | 2 +- cmp/cmpopts/ignore.go | 2 +- cmp/cmpopts/sort.go | 2 +- cmp/cmpopts/struct_filter.go | 2 +- cmp/cmpopts/util_test.go | 2 +- cmp/cmpopts/xform.go | 2 +- cmp/compare.go | 2 +- cmp/compare_test.go | 2 +- cmp/example_reporter_test.go | 2 +- cmp/example_test.go | 2 +- cmp/export_panic.go | 2 +- cmp/export_unsafe.go | 2 +- cmp/internal/diff/debug_disable.go | 2 +- cmp/internal/diff/debug_enable.go | 2 +- cmp/internal/diff/diff.go | 2 +- cmp/internal/diff/diff_test.go | 2 +- cmp/internal/flags/flags.go | 2 +- cmp/internal/flags/toolchain_legacy.go | 2 +- cmp/internal/flags/toolchain_recent.go | 2 +- cmp/internal/function/func.go | 2 +- cmp/internal/function/func_test.go | 2 +- cmp/internal/testprotos/protos.go | 2 +- cmp/internal/teststructs/foo1/foo.go | 2 +- cmp/internal/teststructs/foo2/foo.go | 2 +- cmp/internal/teststructs/project1.go | 2 +- cmp/internal/teststructs/project2.go | 2 +- cmp/internal/teststructs/project3.go | 2 +- cmp/internal/teststructs/project4.go | 2 +- cmp/internal/teststructs/structs.go | 2 +- cmp/internal/value/name.go | 2 +- cmp/internal/value/name_test.go | 2 +- cmp/internal/value/pointer_purego.go | 2 +- cmp/internal/value/pointer_unsafe.go | 2 +- cmp/internal/value/sort.go | 2 +- cmp/internal/value/sort_test.go | 2 +- cmp/internal/value/zero.go | 2 +- cmp/internal/value/zero_test.go | 2 +- cmp/options.go | 2 +- cmp/options_test.go | 2 +- cmp/path.go | 2 +- cmp/report.go | 2 +- cmp/report_compare.go | 2 +- cmp/report_references.go | 2 +- cmp/report_reflect.go | 2 +- cmp/report_slices.go | 2 +- cmp/report_text.go | 2 +- cmp/report_value.go | 2 +- 47 files changed, 47 insertions(+), 47 deletions(-) diff --git a/cmp/cmpopts/equate.go b/cmp/cmpopts/equate.go index 8667908..51ce36f 100644 --- a/cmp/cmpopts/equate.go +++ b/cmp/cmpopts/equate.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // Package cmpopts provides common options for the cmp package. package cmpopts diff --git a/cmp/cmpopts/ignore.go b/cmp/cmpopts/ignore.go index 48787dd..80c6061 100644 --- a/cmp/cmpopts/ignore.go +++ b/cmp/cmpopts/ignore.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmpopts diff --git a/cmp/cmpopts/sort.go b/cmp/cmpopts/sort.go index 3a48046..a646d74 100644 --- a/cmp/cmpopts/sort.go +++ b/cmp/cmpopts/sort.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmpopts diff --git a/cmp/cmpopts/struct_filter.go b/cmp/cmpopts/struct_filter.go index fe8d1b9..a09829c 100644 --- a/cmp/cmpopts/struct_filter.go +++ b/cmp/cmpopts/struct_filter.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmpopts diff --git a/cmp/cmpopts/util_test.go b/cmp/cmpopts/util_test.go index 9e96632..b19bcab 100644 --- a/cmp/cmpopts/util_test.go +++ b/cmp/cmpopts/util_test.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmpopts diff --git a/cmp/cmpopts/xform.go b/cmp/cmpopts/xform.go index 9d65155..4eb49d6 100644 --- a/cmp/cmpopts/xform.go +++ b/cmp/cmpopts/xform.go @@ -1,6 +1,6 @@ // Copyright 2018, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmpopts diff --git a/cmp/compare.go b/cmp/compare.go index 6656186..83fc5a4 100644 --- a/cmp/compare.go +++ b/cmp/compare.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // Package cmp determines equality of values. // diff --git a/cmp/compare_test.go b/cmp/compare_test.go index bdcc06b..13a3a4e 100644 --- a/cmp/compare_test.go +++ b/cmp/compare_test.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp_test diff --git a/cmp/example_reporter_test.go b/cmp/example_reporter_test.go index bc1932e..bacba28 100644 --- a/cmp/example_reporter_test.go +++ b/cmp/example_reporter_test.go @@ -1,6 +1,6 @@ // Copyright 2019, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp_test diff --git a/cmp/example_test.go b/cmp/example_test.go index d4f7391..d165383 100644 --- a/cmp/example_test.go +++ b/cmp/example_test.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp_test diff --git a/cmp/export_panic.go b/cmp/export_panic.go index dfa5d21..5ff0b42 100644 --- a/cmp/export_panic.go +++ b/cmp/export_panic.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // +build purego diff --git a/cmp/export_unsafe.go b/cmp/export_unsafe.go index 351f1a3..21eb548 100644 --- a/cmp/export_unsafe.go +++ b/cmp/export_unsafe.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // +build !purego diff --git a/cmp/internal/diff/debug_disable.go b/cmp/internal/diff/debug_disable.go index fe98dcc..1daaaac 100644 --- a/cmp/internal/diff/debug_disable.go +++ b/cmp/internal/diff/debug_disable.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // +build !cmp_debug diff --git a/cmp/internal/diff/debug_enable.go b/cmp/internal/diff/debug_enable.go index 597b6ae..4b91dbc 100644 --- a/cmp/internal/diff/debug_enable.go +++ b/cmp/internal/diff/debug_enable.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // +build cmp_debug diff --git a/cmp/internal/diff/diff.go b/cmp/internal/diff/diff.go index 730e223..441953e 100644 --- a/cmp/internal/diff/diff.go +++ b/cmp/internal/diff/diff.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // Package diff implements an algorithm for producing edit-scripts. // The edit-script is a sequence of operations needed to transform one list diff --git a/cmp/internal/diff/diff_test.go b/cmp/internal/diff/diff_test.go index 35e8642..d97fef8 100644 --- a/cmp/internal/diff/diff_test.go +++ b/cmp/internal/diff/diff_test.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package diff diff --git a/cmp/internal/flags/flags.go b/cmp/internal/flags/flags.go index a9e7fc0..d8e459c 100644 --- a/cmp/internal/flags/flags.go +++ b/cmp/internal/flags/flags.go @@ -1,6 +1,6 @@ // Copyright 2019, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package flags diff --git a/cmp/internal/flags/toolchain_legacy.go b/cmp/internal/flags/toolchain_legacy.go index 01aed0a..82d1d7f 100644 --- a/cmp/internal/flags/toolchain_legacy.go +++ b/cmp/internal/flags/toolchain_legacy.go @@ -1,6 +1,6 @@ // Copyright 2019, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // +build !go1.10 diff --git a/cmp/internal/flags/toolchain_recent.go b/cmp/internal/flags/toolchain_recent.go index c0b667f..8646f05 100644 --- a/cmp/internal/flags/toolchain_recent.go +++ b/cmp/internal/flags/toolchain_recent.go @@ -1,6 +1,6 @@ // Copyright 2019, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // +build go1.10 diff --git a/cmp/internal/function/func.go b/cmp/internal/function/func.go index ace1dbe..d127d43 100644 --- a/cmp/internal/function/func.go +++ b/cmp/internal/function/func.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // Package function provides functionality for identifying function types. package function diff --git a/cmp/internal/function/func_test.go b/cmp/internal/function/func_test.go index 61eeccd..f03ef45 100644 --- a/cmp/internal/function/func_test.go +++ b/cmp/internal/function/func_test.go @@ -1,6 +1,6 @@ // Copyright 2019, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package function diff --git a/cmp/internal/testprotos/protos.go b/cmp/internal/testprotos/protos.go index 120c8b0..81622d3 100644 --- a/cmp/internal/testprotos/protos.go +++ b/cmp/internal/testprotos/protos.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package testprotos diff --git a/cmp/internal/teststructs/foo1/foo.go b/cmp/internal/teststructs/foo1/foo.go index c769dfb..c0882fb 100644 --- a/cmp/internal/teststructs/foo1/foo.go +++ b/cmp/internal/teststructs/foo1/foo.go @@ -1,6 +1,6 @@ // Copyright 2020, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // Package foo is deliberately named differently than the parent directory. // It contain declarations that have ambiguity in their short names, diff --git a/cmp/internal/teststructs/foo2/foo.go b/cmp/internal/teststructs/foo2/foo.go index c769dfb..c0882fb 100644 --- a/cmp/internal/teststructs/foo2/foo.go +++ b/cmp/internal/teststructs/foo2/foo.go @@ -1,6 +1,6 @@ // Copyright 2020, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // Package foo is deliberately named differently than the parent directory. // It contain declarations that have ambiguity in their short names, diff --git a/cmp/internal/teststructs/project1.go b/cmp/internal/teststructs/project1.go index 1999e38..223d6ab 100644 --- a/cmp/internal/teststructs/project1.go +++ b/cmp/internal/teststructs/project1.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package teststructs diff --git a/cmp/internal/teststructs/project2.go b/cmp/internal/teststructs/project2.go index 536592b..1616dd8 100644 --- a/cmp/internal/teststructs/project2.go +++ b/cmp/internal/teststructs/project2.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package teststructs diff --git a/cmp/internal/teststructs/project3.go b/cmp/internal/teststructs/project3.go index 957d093..9e56dfa 100644 --- a/cmp/internal/teststructs/project3.go +++ b/cmp/internal/teststructs/project3.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package teststructs diff --git a/cmp/internal/teststructs/project4.go b/cmp/internal/teststructs/project4.go index 49920f2..a09aba2 100644 --- a/cmp/internal/teststructs/project4.go +++ b/cmp/internal/teststructs/project4.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package teststructs diff --git a/cmp/internal/teststructs/structs.go b/cmp/internal/teststructs/structs.go index 6b4d2a7..bfd2de8 100644 --- a/cmp/internal/teststructs/structs.go +++ b/cmp/internal/teststructs/structs.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package teststructs diff --git a/cmp/internal/value/name.go b/cmp/internal/value/name.go index 8228e7d..b6c12ce 100644 --- a/cmp/internal/value/name.go +++ b/cmp/internal/value/name.go @@ -1,6 +1,6 @@ // Copyright 2020, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package value diff --git a/cmp/internal/value/name_test.go b/cmp/internal/value/name_test.go index ddb31d4..3eec91c 100644 --- a/cmp/internal/value/name_test.go +++ b/cmp/internal/value/name_test.go @@ -1,6 +1,6 @@ // Copyright 2020, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package value diff --git a/cmp/internal/value/pointer_purego.go b/cmp/internal/value/pointer_purego.go index e9e384a..44f4a5a 100644 --- a/cmp/internal/value/pointer_purego.go +++ b/cmp/internal/value/pointer_purego.go @@ -1,6 +1,6 @@ // Copyright 2018, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // +build purego diff --git a/cmp/internal/value/pointer_unsafe.go b/cmp/internal/value/pointer_unsafe.go index b50c17e..a605953 100644 --- a/cmp/internal/value/pointer_unsafe.go +++ b/cmp/internal/value/pointer_unsafe.go @@ -1,6 +1,6 @@ // Copyright 2018, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. // +build !purego diff --git a/cmp/internal/value/sort.go b/cmp/internal/value/sort.go index 24fbae6..98533b0 100644 --- a/cmp/internal/value/sort.go +++ b/cmp/internal/value/sort.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package value diff --git a/cmp/internal/value/sort_test.go b/cmp/internal/value/sort_test.go index fb86fce..26222d6 100644 --- a/cmp/internal/value/sort_test.go +++ b/cmp/internal/value/sort_test.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package value_test diff --git a/cmp/internal/value/zero.go b/cmp/internal/value/zero.go index 06a8ffd..9147a29 100644 --- a/cmp/internal/value/zero.go +++ b/cmp/internal/value/zero.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package value diff --git a/cmp/internal/value/zero_test.go b/cmp/internal/value/zero_test.go index 1d6c434..ddaa337 100644 --- a/cmp/internal/value/zero_test.go +++ b/cmp/internal/value/zero_test.go @@ -1,6 +1,6 @@ // Copyright 2019, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package value diff --git a/cmp/options.go b/cmp/options.go index 4b0407a..e57b9eb 100644 --- a/cmp/options.go +++ b/cmp/options.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp diff --git a/cmp/options_test.go b/cmp/options_test.go index f8066c7..c7d45f3 100644 --- a/cmp/options_test.go +++ b/cmp/options_test.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp diff --git a/cmp/path.go b/cmp/path.go index 603dbb0..3d45c1a 100644 --- a/cmp/path.go +++ b/cmp/path.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp diff --git a/cmp/report.go b/cmp/report.go index aafcb36..f43cd12 100644 --- a/cmp/report.go +++ b/cmp/report.go @@ -1,6 +1,6 @@ // Copyright 2017, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp diff --git a/cmp/report_compare.go b/cmp/report_compare.go index 9e21809..a6c070c 100644 --- a/cmp/report_compare.go +++ b/cmp/report_compare.go @@ -1,6 +1,6 @@ // Copyright 2019, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp diff --git a/cmp/report_references.go b/cmp/report_references.go index d620c2c..be31b33 100644 --- a/cmp/report_references.go +++ b/cmp/report_references.go @@ -1,6 +1,6 @@ // Copyright 2020, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp diff --git a/cmp/report_reflect.go b/cmp/report_reflect.go index 786f671..5b47420 100644 --- a/cmp/report_reflect.go +++ b/cmp/report_reflect.go @@ -1,6 +1,6 @@ // Copyright 2019, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp diff --git a/cmp/report_slices.go b/cmp/report_slices.go index 35315da..da04caf 100644 --- a/cmp/report_slices.go +++ b/cmp/report_slices.go @@ -1,6 +1,6 @@ // Copyright 2019, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp diff --git a/cmp/report_text.go b/cmp/report_text.go index 8b12c05..0fd46d7 100644 --- a/cmp/report_text.go +++ b/cmp/report_text.go @@ -1,6 +1,6 @@ // Copyright 2019, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp diff --git a/cmp/report_value.go b/cmp/report_value.go index 83031a7..668d470 100644 --- a/cmp/report_value.go +++ b/cmp/report_value.go @@ -1,6 +1,6 @@ // Copyright 2019, The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE.md file. +// license that can be found in the LICENSE file. package cmp