Skip to content

Commit 1282e9f

Browse files
author
Stanislav Paskalev
committed
Fixed license, readme and formatting
1 parent cfb6ce9 commit 1282e9f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright © 2015 Stanislav Paskalev
1+
Copyright © 2015-2016 Stanislav Paskalev
22

33
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.
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# diff
2-
Package diff provides a diff algorithm implementation for finite, indexable sequences with comparable elements
2+
Package diff provides a diff algorithm implementation for finite, indexable sequences with comparable elements in golang.

diff.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ func search(x, y, lenX, lenY int, mat matrix) (result match) {
137137
// A diff.Interface implementation with plugable Equal function
138138
type impl struct {
139139
len1, len2 int
140-
equal func(i, j int) bool
140+
equal func(i, j int) bool
141141
}
142142

143143
// Required per diff.Interface

0 commit comments

Comments
 (0)