diff --git a/LICENSE.md b/LICENSE.md index 6cac2a9..c370c04 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright © 2015 Stanislav Paskalev +Copyright © 2015-2016 Stanislav Paskalev Usage of the works is permitted provided that this instrument is retained with the works, so that any entity that uses the works is notified of this instrument. diff --git a/README.md b/README.md index 2746de2..29fc5c0 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # diff -Package diff provides a diff algorithm implementation for finite, indexable sequences with comparable elements +Package diff provides a diff algorithm implementation for finite, indexable sequences with comparable elements in golang. \ No newline at end of file diff --git a/diff.go b/diff.go index f1aab1d..c66420b 100644 --- a/diff.go +++ b/diff.go @@ -137,7 +137,7 @@ func search(x, y, lenX, lenY int, mat matrix) (result match) { // A diff.Interface implementation with plugable Equal function type impl struct { len1, len2 int - equal func(i, j int) bool + equal func(i, j int) bool } // Required per diff.Interface