Skip to content

Commit 22f18f9

Browse files
committed
update org from src-d to go-git
1 parent 1ac3a1a commit 22f18f9

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@
142142
// - make error context accessible programmatically?
143143
// - limit input size?
144144
//
145-
package gcfg // import "github.com/src-d/gcfg"
145+
package gcfg // import "github.com/go-git/gcfg"

example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66
)
77

8-
import "github.com/src-d/gcfg"
8+
import "github.com/go-git/gcfg"
99

1010
func ExampleReadStringInto() {
1111
cfgStr := `; Comment line

read.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"os"
88
"strings"
99

10-
"github.com/src-d/gcfg/scanner"
11-
"github.com/src-d/gcfg/token"
10+
"github.com/go-git/gcfg/scanner"
11+
"github.com/go-git/gcfg/token"
1212
"gopkg.in/warnings.v0"
1313
)
1414

scanner/errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
import (
14-
"github.com/src-d/gcfg/token"
14+
"github.com/go-git/gcfg/token"
1515
)
1616

1717
// In an ErrorList, an error is represented by an *Error.

scanner/example_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
)
1010

1111
import (
12-
"github.com/src-d/gcfg/scanner"
13-
"github.com/src-d/gcfg/token"
12+
"github.com/go-git/gcfg/scanner"
13+
"github.com/go-git/gcfg/token"
1414
)
1515

1616
func ExampleScanner_Scan() {

scanner/scanner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
)
2020

2121
import (
22-
"github.com/src-d/gcfg/token"
22+
"github.com/go-git/gcfg/token"
2323
)
2424

2525
// An ErrorHandler may be provided to Scanner.Init. If a syntax error is

scanner/scanner_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
import (
14-
"github.com/src-d/gcfg/token"
14+
"github.com/go-git/gcfg/token"
1515
)
1616

1717
var fset = token.NewFileSet()

set.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"unicode"
1111
"unicode/utf8"
1212

13-
"github.com/src-d/gcfg/types"
13+
"github.com/go-git/gcfg/types"
1414
"gopkg.in/warnings.v0"
1515
)
1616

0 commit comments

Comments
 (0)