Fixed grammar

This commit is contained in:
Thom Shutt 2017-09-08 13:40:26 +01:00 committed by GitHub
parent 9f41f7636a
commit a27e787f90
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 {