summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-08-26 14:46:50 -0700
committerTim Smith <tsmith84@gmail.com>2020-08-26 14:46:50 -0700
commitb045f01d7e7ce619bb58025f067b9b1762ba8d9c (patch)
tree201d2434b1a973c5057613d0666a16616eeeb1ae
parent4a5162a70ade915f2b5c992f7e3419c221717b60 (diff)
downloadchef-b045f01d7e7ce619bb58025f067b9b1762ba8d9c.tar.gz
Typos typos everywhere
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/chef_client_cron.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/chef_client_cron.rb b/lib/chef/resource/chef_client_cron.rb
index 80b0a8e00c..7e216a75a3 100644
--- a/lib/chef/resource/chef_client_cron.rb
+++ b/lib/chef/resource/chef_client_cron.rb
@@ -142,7 +142,7 @@ class Chef
description: "The process priority to run the #{Chef::Dist::CLIENT} process at. A value of -20 is the highest priority and 19 is the lowest priority.",
introduced: "16.5",
coerce: proc { |x| Integer(x) },
- callbacks: { "should be a Integer between -20 and 19" => proc { |v| v >= -20 && v <= 19 } }
+ callbacks: { "should be an Integer between -20 and 19" => proc { |v| v >= -20 && v <= 19 } }
action :add do
# TODO: Replace this with a :create_if_missing action on directory when that exists