Skip to content

Commit

Permalink
Merge pull request #52 from thomshutt/master
Browse files Browse the repository at this point in the history
Fixed grammar
  • Loading branch information
Eyal Posener authored Sep 8, 2017
2 parents 9f41f76 + a27e787 commit 88e5976
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type installer interface {
func Install(cmd string) error {
is := installers()
if len(is) == 0 {
return errors.New("Did not found any shells to install")
return errors.New("Did not find any shells to install")
}
bin, err := getBinaryPath()
if err != nil {
Expand All @@ -41,7 +41,7 @@ func Install(cmd string) error {
func Uninstall(cmd string) error {
is := installers()
if len(is) == 0 {
return errors.New("Did not found any shells to uninstall")
return errors.New("Did not find any shells to uninstall")
}
bin, err := getBinaryPath()
if err != nil {
Expand Down

0 comments on commit 88e5976

Please sign in to comment.