summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-07-21 19:06:21 -0700
committerGitHub <noreply@github.com>2020-07-21 19:06:21 -0700
commitbdc4637c0dfd88f3e71f42e2e4e4e2a820365bb0 (patch)
treeae366b62776793a82b3e289c909a9c824c363871
parent8ed25f15fe2ae28d12392635d27ef6afcbb1bbbc (diff)
downloadchef-bdc4637c0dfd88f3e71f42e2e4e4e2a820365bb0.tar.gz
Update lib/chef/resource/macos_userdefaults.rb
Signed-off-by: Tim Smith <tsmith@chef.io> Co-authored-by: pete higgins <pete@peterhiggins.org>
-rw-r--r--lib/chef/resource/macos_userdefaults.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/macos_userdefaults.rb b/lib/chef/resource/macos_userdefaults.rb
index 6478a37a7f..db0e0dad37 100644
--- a/lib/chef/resource/macos_userdefaults.rb
+++ b/lib/chef/resource/macos_userdefaults.rb
@@ -224,7 +224,7 @@ class Chef
return ["FALSE"] if [false, "FALSE", "0", "false", "NO", "no"].include?(input)
# make sure it's very clear bad input was given
- raise ArgumentError, "#{input} cannot be converted to a boolean value for use with Apple's defaults command. Acceptable values are: 'TRUE', 'YES', 'true, 'yes', '0', true, 'FALSE', 'false', 'NO', 'no', 1, or false."
+ raise ArgumentError, "#{input} cannot be converted to a boolean value for use with Apple's defaults command. Acceptable values are: 'TRUE', 'YES', 'true, 'yes', '0', true, 'FALSE', 'false', 'NO', 'no', '1', or false."
end
#