summaryrefslogtreecommitdiff
path: root/lib/chef/provider
diff options
context:
space:
mode:
authorNoah Kantrowitz <noah@coderanger.net>2017-04-03 23:05:45 -0500
committerNoah Kantrowitz <noah@coderanger.net>2017-04-03 23:05:45 -0500
commit7f38378fc09addd67a6d40b0deb723a6bddd960d (patch)
treec007914b9a73b7d1d718431f385b99ea8736b958 /lib/chef/provider
parent2c6a8ead5225a44d334dcc70c33308ad7c7a0021 (diff)
downloadchef-7f38378fc09addd67a6d40b0deb723a6bddd960d.tar.gz
Make chefstyle happy.
Signed-off-by: Noah Kantrowitz <noah@coderanger.net>
Diffstat (limited to 'lib/chef/provider')
-rw-r--r--lib/chef/provider/template/content.rb2
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