You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go-diff offers algorithms to perform operations required for synchronizing plain text:
4
4
@@ -9,7 +9,7 @@ go-diff offers algorithms to perform operations required for synchronizing plain
9
9
## Installation
10
10
11
11
```bash
12
-
go get -u github.com/sergi/go-diff/...
12
+
go get -u github.com/katbyte/sergi-go-diff/...
13
13
```
14
14
15
15
## Usage
@@ -22,7 +22,7 @@ package main
22
22
import (
23
23
"fmt"
24
24
25
-
"github.com/sergi/go-diff/diffmatchpatch"
25
+
"github.com/katbyte/sergi-go-diff/diffmatchpatch"
26
26
)
27
27
28
28
const (
@@ -41,11 +41,11 @@ func main() {
41
41
42
42
## Found a bug or are you missing a feature in go-diff?
43
43
44
-
Please make sure to have the latest version of go-diff. If the problem still persists go through the [open issues](https://github.com/sergi/go-diff/issues) in the tracker first. If you cannot find your request just open up a [new issue](https://github.com/sergi/go-diff/issues/new).
44
+
Please make sure to have the latest version of go-diff. If the problem still persists go through the [open issues](https://github.com/katbyte/sergi-go-diff/issues) in the tracker first. If you cannot find your request just open up a [new issue](https://github.com/katbyte/sergi-go-diff/issues/new).
45
45
46
46
## How to contribute?
47
47
48
-
You want to contribute to go-diff? GREAT! If you are here because of a bug you want to fix or a feature you want to add, you can just read on. Otherwise we have a list of [open issues in the tracker](https://github.com/sergi/go-diff/issues). Just choose something you think you can work on and discuss your plans in the issue by commenting on it.
48
+
You want to contribute to go-diff? GREAT! If you are here because of a bug you want to fix or a feature you want to add, you can just read on. Otherwise we have a list of [open issues in the tracker](https://github.com/katbyte/sergi-go-diff/issues). Just choose something you think you can work on and discuss your plans in the issue by commenting on it.
49
49
50
50
Please make sure that every behavioral change is accompanied by test cases. Additionally, every contribution must pass the `lint` and `test` Makefile targets which can be run using the following commands in the repository root directory.
0 commit comments