Skip to content

Commit

Permalink
some comment updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Oct 13, 2015
1 parent 6030b53 commit ed211a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions storage.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package getter

// Storage is an interface that knows how to lookup downloaded modules
// as well as download and update modules from their sources into the
// Storage is an interface that knows how to lookup downloaded directories
// as well as download and update directories from their sources into the
// proper location.
type Storage interface {
// Dir returns the directory on local disk where the modulue source
// Dir returns the directory on local disk where the directory source
// can be loaded from.
Dir(string) (string, bool, error)

// Get will download and optionally update the given module.
// Get will download and optionally update the given directory.
Get(string, string, bool) error
}

0 comments on commit ed211a0

Please sign in to comment.