diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-05-07 16:50:25 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-05-18 20:29:40 -0700 |
commit | a729c9be155e3d335fbd7bd165abd4ba9610943d (patch) | |
tree | 75b4b985ff469f033dc644857a8183d784611d34 /lib/chef/provider.rb | |
parent | a36abdaf4c6cad4df506866021ec7abb2266706b (diff) | |
download | chef-a729c9be155e3d335fbd7bd165abd4ba9610943d.tar.gz |
Get lib/ free of spelling violations.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'lib/chef/provider.rb')
-rw-r--r-- | lib/chef/provider.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/provider.rb b/lib/chef/provider.rb index 947a890806..3607b24752 100644 --- a/lib/chef/provider.rb +++ b/lib/chef/provider.rb @@ -152,7 +152,7 @@ class Chef new_resource.cookbook_name end - # hook that subclasses can use to do lazy validation for where properties aren't flexibile enough + # hook that subclasses can use to do lazy validation for where properties aren't flexible enough def check_resource_semantics!; end # a simple placeholder method that will be called / raise if a resource tries to @@ -167,7 +167,7 @@ class Chef def load_after_resource # This is a backwards compatible hack, custom resources properly wire up a new after_resource - # via load_current_value. It is acceptible for old style resources that cannot be easily made + # via load_current_value. It is acceptable for old style resources that cannot be easily made # into custom resources to override this method and provide a proper after_resource. @after_resource = @new_resource end @@ -190,7 +190,7 @@ class Chef def run_action(action = nil) @action = action unless action.nil? - # hook that subclasses can use to do lazy validation for where properties aren't flexibile enough + # hook that subclasses can use to do lazy validation for where properties aren't flexible enough check_resource_semantics! # force the validation of required properties |