Skip to content

Commit 7b641cf

Browse files
committed
Fix imports for gopkg.in/stack.v0
1 parent 432d0d5 commit 7b641cf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

format_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ package stack_test
33
import (
44
"fmt"
55

6-
"github.com/go-stack/stack"
6+
"gopkg.in/stack.v0"
77
)
88

99
func Example_callFormat() {
1010
log("%+s")
1111
log("%v %[1]n()")
1212
// Output:
13-
// github.com/go-stack/stack/format_test.go
13+
// gopkg.in/stack.v0/format_test.go
1414
// format_test.go:11 Example_callFormat()
1515
}
1616

stack.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// Package stack's types implement fmt.Formatter, which provides a simple and
88
// flexible way to declaratively configure formatting when used with logging
99
// or error tracking packages.
10-
package stack
10+
package stack // import "gopkg.in/stack.v0"
1111

1212
import (
1313
"fmt"

stack_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"runtime"
1010
"testing"
1111

12-
"github.com/go-stack/stack"
12+
"gopkg.in/stack.v0"
1313
)
1414

1515
type testType struct{}

0 commit comments

Comments
 (0)