Skip to content

Commit

Permalink
Fix the import path
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Paskalev committed May 6, 2020
1 parent 08a7053 commit ee2ba03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions diff.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Package diff provides a diff algorithm implementation
// for finite, indexable sequences with comparable elements.
package diff // import "github.com/solarsea/diff"
package diff // import "github.com/spaskalev/diff"

import (
bits "github.com/solarsea/bits"
bits "github.com/spaskalev/bits"
)

// Interface abstracts the required knowledge to perform a diff
Expand Down
2 changes: 1 addition & 1 deletion diff_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package diff // import "github.com/solarsea/diff"
package diff // import "github.com/spaskalev/diff"

import (
"fmt"
Expand Down

0 comments on commit ee2ba03

Please sign in to comment.