From 2a09aab8380d7842750328aebd5671bcccea89c8 Mon Sep 17 00:00:00 2001 From: Mike Scott Date: Mon, 12 Nov 2018 17:08:18 +0000 Subject: [PATCH] Fix typo in ruby command error. (#79) "unkown" => "unknown" --- command/rubycommand/rubycommand.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/rubycommand/rubycommand.go b/command/rubycommand/rubycommand.go index d1cec73..7296e59 100644 --- a/command/rubycommand/rubycommand.go +++ b/command/rubycommand/rubycommand.go @@ -93,7 +93,7 @@ func sudoNeeded(installType InstallType, slice ...string) bool { func NewWithParams(params ...string) (*command.Model, error) { rubyInstallType := installType() if rubyInstallType == Unkown { - return nil, errors.New("unkown ruby installation type") + return nil, errors.New("unknown ruby installation type") } if sudoNeeded(rubyInstallType, params...) {