Skip to content

Commit 2a09aab

Browse files
micscogodrei
authored andcommitted
Fix typo in ruby command error. (#79)
"unkown" => "unknown"
1 parent ac1c370 commit 2a09aab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

command/rubycommand/rubycommand.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func sudoNeeded(installType InstallType, slice ...string) bool {
9393
func NewWithParams(params ...string) (*command.Model, error) {
9494
rubyInstallType := installType()
9595
if rubyInstallType == Unkown {
96-
return nil, errors.New("unkown ruby installation type")
96+
return nil, errors.New("unknown ruby installation type")
9797
}
9898

9999
if sudoNeeded(rubyInstallType, params...) {

0 commit comments

Comments
 (0)