Skip to content

Commit 5510bcb

Browse files
committed
Fork github.com/sergi/go-diff
1 parent 65165c5 commit 5510bcb

14 files changed

+20
-20
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: all clean clean-coverage install install-dependencies install-tools lint test test-verbose test-with-coverage
22

33
export ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
4-
export PKG := github.com/sergi/go-diff
4+
export PKG := github.com/cwarden/go-diff
55
export ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
66

77
$(eval $(ARGS):;@:) # turn arguments into do-nothing targets

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# go-diff [![GoDoc](https://godoc.org/github.com/sergi/go-diff?status.png)](https://godoc.org/github.com/sergi/go-diff/diffmatchpatch) [![Build Status](https://travis-ci.org/sergi/go-diff.svg?branch=master)](https://travis-ci.org/sergi/go-diff) [![Coverage Status](https://coveralls.io/repos/sergi/go-diff/badge.png?branch=master)](https://coveralls.io/r/sergi/go-diff?branch=master)
1+
# go-diff [![GoDoc](https://godoc.org/github.com/cwarden/go-diff?status.png)](https://godoc.org/github.com/cwarden/go-diff/diffmatchpatch) [![Build Status](https://travis-ci.org/sergi/go-diff.svg?branch=master)](https://travis-ci.org/sergi/go-diff) [![Coverage Status](https://coveralls.io/repos/sergi/go-diff/badge.png?branch=master)](https://coveralls.io/r/sergi/go-diff?branch=master)
22

33
go-diff offers algorithms to perform operations required for synchronizing plain text:
44

@@ -9,7 +9,7 @@ go-diff offers algorithms to perform operations required for synchronizing plain
99
## Installation
1010

1111
```bash
12-
go get -u github.com/sergi/go-diff/...
12+
go get -u github.com/cwarden/go-diff/...
1313
```
1414

1515
## Usage
@@ -22,7 +22,7 @@ package main
2222
import (
2323
"fmt"
2424

25-
"github.com/sergi/go-diff/diffmatchpatch"
25+
"github.com/cwarden/go-diff/diffmatchpatch"
2626
)
2727

2828
const (
@@ -41,11 +41,11 @@ func main() {
4141

4242
## Found a bug or are you missing a feature in go-diff?
4343

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/cwarden/go-diff/issues) in the tracker first. If you cannot find your request just open up a [new issue](https://github.com/cwarden/go-diff/issues/new).
4545

4646
## How to contribute?
4747

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/cwarden/go-diff/issues). Just choose something you think you can work on and discuss your plans in the issue by commenting on it.
4949

5050
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.
5151

@@ -75,7 +75,7 @@ This Go version of Diff, Match and Patch Library is licensed under the [MIT Lice
7575
Go version of Diff, Match and Patch Library
7676

7777
> Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
78-
> <https://github.com/sergi/go-diff>
78+
> <https://github.com/cwarden/go-diff>
7979
8080
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8181

diffmatchpatch/benchutil_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
2-
// https://github.com/sergi/go-diff
2+
// https://github.com/cwarden/go-diff
33
// See the included LICENSE file for license details.
44
//
55
// go-diff is a Go implementation of Google's Diff, Match, and Patch library

diffmatchpatch/diff.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
2-
// https://github.com/sergi/go-diff
2+
// https://github.com/cwarden/go-diff
33
// See the included LICENSE file for license details.
44
//
55
// go-diff is a Go implementation of Google's Diff, Match, and Patch library
@@ -444,7 +444,7 @@ func commonPrefixLength(text1, text2 []rune) int {
444444
// commonSuffixLength returns the length of the common suffix of two rune slices.
445445
func commonSuffixLength(text1, text2 []rune) int {
446446
// Use linear search rather than the binary search discussed at https://neil.fraser.name/news/2007/10/09/.
447-
// See discussion at https://github.com/sergi/go-diff/issues/54.
447+
// See discussion at https://github.com/cwarden/go-diff/issues/54.
448448
i1 := len(text1)
449449
i2 := len(text2)
450450
for n := 0; ; n++ {

diffmatchpatch/diff_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
2-
// https://github.com/sergi/go-diff
2+
// https://github.com/cwarden/go-diff
33
// See the included LICENSE file for license details.
44
//
55
// go-diff is a Go implementation of Google's Diff, Match, and Patch library

diffmatchpatch/diffmatchpatch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
2-
// https://github.com/sergi/go-diff
2+
// https://github.com/cwarden/go-diff
33
// See the included LICENSE file for license details.
44
//
55
// go-diff is a Go implementation of Google's Diff, Match, and Patch library

diffmatchpatch/match.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
2-
// https://github.com/sergi/go-diff
2+
// https://github.com/cwarden/go-diff
33
// See the included LICENSE file for license details.
44
//
55
// go-diff is a Go implementation of Google's Diff, Match, and Patch library

diffmatchpatch/match_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
2-
// https://github.com/sergi/go-diff
2+
// https://github.com/cwarden/go-diff
33
// See the included LICENSE file for license details.
44
//
55
// go-diff is a Go implementation of Google's Diff, Match, and Patch library

diffmatchpatch/mathutil.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
2-
// https://github.com/sergi/go-diff
2+
// https://github.com/cwarden/go-diff
33
// See the included LICENSE file for license details.
44
//
55
// go-diff is a Go implementation of Google's Diff, Match, and Patch library

diffmatchpatch/patch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
2-
// https://github.com/sergi/go-diff
2+
// https://github.com/cwarden/go-diff
33
// See the included LICENSE file for license details.
44
//
55
// go-diff is a Go implementation of Google's Diff, Match, and Patch library

0 commit comments

Comments
 (0)