Skip to content

Commit

Permalink
Merge pull request #569 from kokes/patch-1
Browse files Browse the repository at this point in the history
Typo: "an bool"
  • Loading branch information
shanemcd authored Feb 28, 2022
2 parents 921c8db + 0b222af commit 3ecf655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/workceptor/controlsvc.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func boolFromMap(config map[string]interface{}, name string) (bool, error) {
return false, nil
}

return false, fmt.Errorf("field %s value %s is not convertible to an bool", name, value)
return false, fmt.Errorf("field %s value %s is not convertible to a bool", name, value)
}

func (t *workceptorCommandType) InitFromJSON(config map[string]interface{}) (controlsvc.ControlCommand, error) {
Expand Down

0 comments on commit 3ecf655

Please sign in to comment.