Merge pull request #52 from thomshutt/master

Fixed grammar
This commit is contained in:
Eyal Posener 2017-09-08 15:52:45 +03:00 committed by GitHub
commit 88e59760ad
1 changed files with 2 additions and 2 deletions

View File

@ -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 {
@ -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 {