Merge pull request #126 from harsha-y/master

utils: fix typo in errors.go
This commit is contained in:
Quentin Machu 2016-03-26 01:12:51 -04:00
commit f0642bb47f
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ var (
ErrFilesystem = errors.New("something went wrong when interacting with the fs")
// ErrCouldNotDownload occurs when a download fails.
ErrCouldNotDownload = errors.New("could not download requested ressource")
ErrCouldNotDownload = errors.New("could not download requested resource")
// ErrNotFound occurs when a resource could not be found.
ErrNotFound = errors.New("the resource cannot be found")

View File

@ -22,7 +22,7 @@ var (
ErrFilesystem = errors.New("something went wrong when interacting with the fs")
// ErrCouldNotDownload occurs when a download fails.
ErrCouldNotDownload = errors.New("could not download requested ressource")
ErrCouldNotDownload = errors.New("could not download requested resource")
// ErrNotFound occurs when a resource could not be found.
ErrNotFound = errors.New("the resource cannot be found")