summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-08-03 17:26:00 -0700
committerTim Smith <tsmith84@gmail.com>2020-08-03 17:26:00 -0700
commit51845fee2876a4eda63e683de6dbdedd2ca53807 (patch)
treee8a6923d876630f8bf68ebd0331de6cec326c902
parent5faede767d06e51857b5a3c6aac6858692047e65 (diff)
downloadchef-51845fee2876a4eda63e683de6dbdedd2ca53807.tar.gz
One chefstyle fix
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/windows_share.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/windows_share.rb b/lib/chef/resource/windows_share.rb
index 390d97a6c2..5e88f20967 100644
--- a/lib/chef/resource/windows_share.rb
+++ b/lib/chef/resource/windows_share.rb
@@ -59,7 +59,7 @@ class Chef
# Specifies the path of the location of the folder to share. The path must be fully qualified. Relative paths or paths that contain wildcard characters are not permitted.
property :path, String,
description: "The path of the folder to share. Required when creating. If the share already exists on a different path then it is deleted and re-created.",
- coerce: proc { |p| p.tr('/', "\\") || p }
+ coerce: proc { |p| p.tr("/", "\\") || p }
# Specifies an optional description of the SMB share. A description of the share is displayed by running the Get-SmbShare cmdlet. The description may not contain more than 256 characters.
property :description, String,