Skip to content

Commit e26a35c

Browse files
committed
Return all paths to github.com for use on master branch.
1 parent cc9d546 commit e26a35c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
[![GoDoc](https://godoc.org/gopkg.in/stack.v0?status.svg)](https://godoc.org/gopkg.in/stack.v0) [![Build Status](https://travis-ci.org/go-stack/stack.svg?branch=master)](https://travis-ci.org/go-stack/stack)
1+
[![GoDoc](https://godoc.org/github.com/go-stack/stack
2+
?status.svg)](https://godoc.org/github.com/go-stack/stack
3+
) [![Build Status](https://travis-ci.org/go-stack/stack.svg?branch=master)](https://travis-ci.org/go-stack/stack)
24

35
Package stack implements utilities to capture, manipulate, and format call stacks. It provides a simpler API than package runtime.
46

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 // import "gopkg.in/stack.v0"
10+
package stack
1111

1212
import (
1313
"fmt"

stack_test.go

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

11-
"gopkg.in/stack.v0"
11+
"github.com/go-stack/stack"
1212
)
1313

1414
const importPath = "github.com/go-stack/stack"

0 commit comments

Comments
 (0)