diff options
author | Noah Kantrowitz <noah@coderanger.net> | 2017-04-03 23:05:45 -0500 |
---|---|---|
committer | Noah Kantrowitz <noah@coderanger.net> | 2017-04-03 23:05:45 -0500 |
commit | 7f38378fc09addd67a6d40b0deb723a6bddd960d (patch) | |
tree | c007914b9a73b7d1d718431f385b99ea8736b958 /lib/chef/provider/template | |
parent | 2c6a8ead5225a44d334dcc70c33308ad7c7a0021 (diff) | |
download | chef-7f38378fc09addd67a6d40b0deb723a6bddd960d.tar.gz |
Make chefstyle happy.
Signed-off-by: Noah Kantrowitz <noah@coderanger.net>
Diffstat (limited to 'lib/chef/provider/template')
-rw-r--r-- | lib/chef/provider/template/content.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/template/content.rb b/lib/chef/provider/template/content.rb index e47bbd4a7c..76a3e6d169 100644 --- a/lib/chef/provider/template/content.rb +++ b/lib/chef/provider/template/content.rb @@ -46,7 +46,7 @@ class Chef end when Array # Avoid mutating arrays in the resource in case we're changing anything. - obj.map {|value| visitor.call(value) } + obj.map { |value| visitor.call(value) } when DelayedEvaluator new_resource.instance_eval(&obj) else |