diff --git a/src/internal/diff/diff.go b/src/internal/diff/diff.go index 0aeeb75eb096cb..6a40b23fcbf022 100644 --- a/src/internal/diff/diff.go +++ b/src/internal/diff/diff.go @@ -74,7 +74,7 @@ func Diff(oldName string, old []byte, newName string, new []byte) []byte { continue } - // Expand matching lines as far possible, + // Expand matching lines as far as possible, // establishing that x[start.x:end.x] == y[start.y:end.y]. // Note that on the first (or last) iteration we may (or definitely do) // have an empty match: start.x==end.x and start.y==end.y.