Skip to content

Commit

Permalink
change import path to github.com/src-d/gcfg.
Browse files Browse the repository at this point in the history
  • Loading branch information
smola committed Oct 26, 2016
1 parent bdb40b4 commit f187355
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@
// - make error context accessible programmatically?
// - limit input size?
//
package gcfg // import "gopkg.in/gcfg.v1"
package gcfg // import "github.com/src-d/gcfg"
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
)

import "gopkg.in/gcfg.v1"
import "github.com/src-d/gcfg"

func ExampleReadStringInto() {
cfgStr := `; Comment line
Expand Down
4 changes: 2 additions & 2 deletions read.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"os"
"strings"

"gopkg.in/gcfg.v1/scanner"
"gopkg.in/gcfg.v1/token"
"github.com/src-d/gcfg/scanner"
"github.com/src-d/gcfg/token"
"gopkg.in/warnings.v0"
)

Expand Down
2 changes: 1 addition & 1 deletion scanner/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

import (
"gopkg.in/gcfg.v1/token"
"github.com/src-d/gcfg/token"
)

// In an ErrorList, an error is represented by an *Error.
Expand Down
4 changes: 2 additions & 2 deletions scanner/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
)

import (
"gopkg.in/gcfg.v1/scanner"
"gopkg.in/gcfg.v1/token"
"github.com/src-d/gcfg/scanner"
"github.com/src-d/gcfg/token"
)

func ExampleScanner_Scan() {
Expand Down
2 changes: 1 addition & 1 deletion scanner/scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

import (
"gopkg.in/gcfg.v1/token"
"github.com/src-d/gcfg/token"
)

// An ErrorHandler may be provided to Scanner.Init. If a syntax error is
Expand Down
2 changes: 1 addition & 1 deletion scanner/scanner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

import (
"gopkg.in/gcfg.v1/token"
"github.com/src-d/gcfg/token"
)

var fset = token.NewFileSet()
Expand Down
2 changes: 1 addition & 1 deletion set.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"unicode"
"unicode/utf8"

"gopkg.in/gcfg.v1/types"
"github.com/src-d/gcfg/types"
"gopkg.in/warnings.v0"
)

Expand Down

0 comments on commit f187355

Please sign in to comment.