Skip to content

Commit

Permalink
Fixed license, readme and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Paskalev committed Jul 30, 2016
1 parent cfb6ce9 commit 1282e9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1282e9f

Please sign in to comment.