aboutsummaryrefslogtreecommitdiff
path: root/cmp/internal
diff options
context:
space:
mode:
authorJoe Tsai <joetsai@digital-static.net>2020-09-23 13:30:54 -0700
committerGitHub <noreply@github.com>2020-09-23 13:30:54 -0700
commitd713870ac17fdb9ee5e2ee48ff6562dfb1c0157b (patch)
tree170cc3a5a0a0eb4f330b2413b9d857393c565c22 /cmp/internal
parentd2fcc899bdc2d134b7c00e36137260db963e193c (diff)
downloadgo-cmp-d713870ac17fdb9ee5e2ee48ff6562dfb1c0157b.tar.gz
Fix license headers (#236)
There is no LICENSE.md file, but there is a LICENSE file.
Diffstat (limited to 'cmp/internal')
-rw-r--r--cmp/internal/diff/debug_disable.go2
-rw-r--r--cmp/internal/diff/debug_enable.go2
-rw-r--r--cmp/internal/diff/diff.go2
-rw-r--r--cmp/internal/diff/diff_test.go2
-rw-r--r--cmp/internal/flags/flags.go2
-rw-r--r--cmp/internal/flags/toolchain_legacy.go2
-rw-r--r--cmp/internal/flags/toolchain_recent.go2
-rw-r--r--cmp/internal/function/func.go2
-rw-r--r--cmp/internal/function/func_test.go2
-rw-r--r--cmp/internal/testprotos/protos.go2
-rw-r--r--cmp/internal/teststructs/foo1/foo.go2
-rw-r--r--cmp/internal/teststructs/foo2/foo.go2
-rw-r--r--cmp/internal/teststructs/project1.go2
-rw-r--r--cmp/internal/teststructs/project2.go2
-rw-r--r--cmp/internal/teststructs/project3.go2
-rw-r--r--cmp/internal/teststructs/project4.go2
-rw-r--r--cmp/internal/teststructs/structs.go2
-rw-r--r--cmp/internal/value/name.go2
-rw-r--r--cmp/internal/value/name_test.go2
-rw-r--r--cmp/internal/value/pointer_purego.go2
-rw-r--r--cmp/internal/value/pointer_unsafe.go2
-rw-r--r--cmp/internal/value/sort.go2
-rw-r--r--cmp/internal/value/sort_test.go2
-rw-r--r--cmp/internal/value/zero.go2
-rw-r--r--cmp/internal/value/zero_test.go2
25 files changed, 25 insertions, 25 deletions
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