summaryrefslogtreecommitdiff
path: root/cmd/install/install.go
diff options
context:
space:
mode:
authorEyal Posener <[email protected]>2017-09-08 15:52:45 +0300
committerGitHub <[email protected]>2017-09-08 15:52:45 +0300
commit88e59760adaddb8276c9b15511302890690e2dae (patch)
treebaf8171761007a4550ede1da922f5097c2f442ae /cmd/install/install.go
parent9f41f7636a724791a3b8b1d35e84caa1124f0d3c (diff)
parenta27e787f905c636ad351c4872b8eedb9650da153 (diff)
Merge pull request #52 from thomshutt/master
Fixed grammar
Diffstat (limited to 'cmd/install/install.go')
-rw-r--r--cmd/install/install.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/install/install.go b/cmd/install/install.go
index fb44b2b..644b405 100644
--- a/cmd/install/install.go
+++ b/cmd/install/install.go
@@ -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 {