Skip to content

Commit d422ef3

Browse files
committed
Temporarity added my own repo name for the go modules, so that I could use it
1 parent 0137046 commit d422ef3

File tree

13 files changed

+13
-15
lines changed

13 files changed

+13
-15
lines changed

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/NickyBoy89/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/NickyBoy89/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
@@ -449,7 +449,7 @@ func commonPrefixLength(text1, text2 []rune) int {
449449
// commonSuffixLength returns the length of the common suffix of two rune slices.
450450
func commonSuffixLength(text1, text2 []rune) int {
451451
// Use linear search rather than the binary search discussed at https://neil.fraser.name/news/2007/10/09/.
452-
// See discussion at https://github.com/sergi/go-diff/issues/54.
452+
// See discussion at https://github.com/NickyBoy89/go-diff/issues/54.
453453
i1 := len(text1)
454454
i2 := len(text2)
455455
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/NickyBoy89/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/NickyBoy89/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/NickyBoy89/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/NickyBoy89/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/NickyBoy89/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/NickyBoy89/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_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/NickyBoy89/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/stringutil.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/NickyBoy89/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)