summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-12-18 20:58:44 -0800
committerTim Smith <tsmith@chef.io>2017-12-18 20:58:44 -0800
commitdfa996aeb1ca89e8fd6b3c6aa5a45629ef4d81e3 (patch)
tree6da5495a939195a2ff1c16ebba8df367952120ea
parent087809b8b75051a7294a908f64cc1a0aad6fedf0 (diff)
downloadchef-dfa996aeb1ca89e8fd6b3c6aa5a45629ef4d81e3.tar.gz
Chefstyle fix
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/directory.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/directory.rb b/lib/chef/resource/directory.rb
index ab9bb6b5c0..b989b3ecde 100644
--- a/lib/chef/resource/directory.rb
+++ b/lib/chef/resource/directory.rb
@@ -37,7 +37,7 @@ class Chef
default_action :create
allowed_actions :create, :delete
- property :path, String,name_property: true, identity: true
+ property :path, String, name_property: true, identity: true
property :recursive, [ TrueClass, FalseClass ], default: false
end
end