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

diffmatchpatch/stringutil_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

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/sergi/go-diff
1+
module github.com/NickyBoy89/go-diff
22

33
require (
44
github.com/davecgh/go-spew v1.1.1 // indirect

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
21
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
32
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
43
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
@@ -15,7 +14,6 @@ github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81P
1514
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
1615
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=
1716
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
18-
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
1917
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
2018
gopkg.in/yaml.v2 v2.2.4 h1:/eiJrUcujPVeJ3xlSWaiNi3uSVmDGBK1pDHUHAnao1I=
2119
gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

0 commit comments

Comments
 (0)