summaryrefslogtreecommitdiffstats
path: root/compare/compare.go
diff options
context:
space:
mode:
Diffstat (limited to 'compare/compare.go')
-rw-r--r--compare/compare.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/compare/compare.go b/compare/compare.go
index 18c0de777..537a66676 100644
--- a/compare/compare.go
+++ b/compare/compare.go
@@ -1,4 +1,4 @@
-// Copyright 2017-present The Hugo Authors. All rights reserved.
+// Copyright 2019 The Hugo Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@ type Eqer interface {
Eq(other interface{}) bool
}
-// ProbablyEq is an equal check that may return false positives, but never
+// ProbablyEqer is an equal check that may return false positives, but never
// a false negative.
type ProbablyEqer interface {
ProbablyEq(other interface{}) bool