Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jboursiquot committed Jul 31, 2016
1 parent 91fcca8 commit 8e61df0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions indexer.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import "sync"
// Indexer is the interface our actual implementations must satisfy to be
// considered package indexers.
type Indexer interface {
Index(p Package) error
Remove(p Package) error
Query(name string) (Package, error)
Index(Package) error
Remove(Package) error
Query(string) (Package, error)
}

// Package represents a package to be indexed, removed and querried.
Expand Down

0 comments on commit 8e61df0

Please sign in to comment.