golint fixes

This commit is contained in:
Mat Ryer 2017-08-02 16:05:40 +01:00
parent c3ea983498
commit bd3bf33613
2 changed files with 3 additions and 1 deletions

View File

@ -177,7 +177,7 @@ func newImporter(source string) types.Importer {
// } // }
// stripGopath teks the directory to a package and remove the gopath to get the // stripGopath teks the directory to a package and remove the gopath to get the
// cannonical package name // canonical package name.
func stripGopath(p string) string { func stripGopath(p string) string {
for _, gopath := range gopaths() { for _, gopath := range gopaths() {
p = strings.TrimPrefix(p, path.Join(gopath, "src")+"/") p = strings.TrimPrefix(p, path.Join(gopath, "src")+"/")

View File

@ -2,6 +2,7 @@ package example
import "context" import "context"
// Person is a person.
type Person struct { type Person struct {
ID string ID string
Name string Name string
@ -9,6 +10,7 @@ type Person struct {
Website string Website string
} }
// PersonStore stores people.
type PersonStore interface { type PersonStore interface {
Get(ctx context.Context, id string) (*Person, error) Get(ctx context.Context, id string) (*Person, error)
Create(ctx context.Context, person *Person, confirm bool) error Create(ctx context.Context, person *Person, confirm bool) error