summaryrefslogtreecommitdiff
path: root/lib/chef/provider.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2020-03-04 16:49:48 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2020-03-04 16:49:48 -0800
commitcc792527ad9d8222b3a0990e70f2d59f86f074ae (patch)
tree88e5cc171b7957f7a6331bacda748a4ca6dd628f /lib/chef/provider.rb
parent633c4445e00f3174d156ac69a05be117a3fd0456 (diff)
downloadchef-cc792527ad9d8222b3a0990e70f2d59f86f074ae.tar.gz
fixing some windows func test breaks
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/provider.rb')
-rw-r--r--lib/chef/provider.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider.rb b/lib/chef/provider.rb
index 06e0341089..07cdea6dfc 100644
--- a/lib/chef/provider.rb
+++ b/lib/chef/provider.rb
@@ -63,7 +63,7 @@ class Chef
#
# @return [void]
def self.action(name, &block)
- # We need the block directly in a method so that `super` works.
+ # We need the block directly in a method so that `return` works.
define_method("compile_action_#{name}", &block)
class_eval <<-EOM
def action_#{name}