summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-03-02 15:55:36 -0800
committerTim Smith <tsmith@chef.io>2018-03-02 15:55:36 -0800
commit5db21023d75dc90002010c0bafb2a438baf11996 (patch)
tree00966716e9434bccc2cc8e003eee73892a084eb2
parent4f7a2764af2931683ffabef9c8d9b30bfb5dc891 (diff)
downloadchef-5db21023d75dc90002010c0bafb2a438baf11996.tar.gz
Fix description spacing
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/windows_feature.rb2
-rw-r--r--lib/chef/resource/windows_feature_dism.rb4
-rw-r--r--lib/chef/resource/windows_feature_powershell.rb10
3 files changed, 8 insertions, 8 deletions
diff --git a/lib/chef/resource/windows_feature.rb b/lib/chef/resource/windows_feature.rb
index bb6aa94dcd..f1404cf198 100644
--- a/lib/chef/resource/windows_feature.rb
+++ b/lib/chef/resource/windows_feature.rb
@@ -43,7 +43,7 @@ class Chef
property :install_method, Symbol,
description: "If DISM or PowerShell should be used for the installation. Note feature names differ"\
- "between the two installation methods.",
+ " between the two installation methods.",
equal_to: [:windows_feature_dism, :windows_feature_powershell, :windows_feature_servermanagercmd]
property :timeout, Integer,
diff --git a/lib/chef/resource/windows_feature_dism.rb b/lib/chef/resource/windows_feature_dism.rb
index f4abb7af6b..6ffaf318d5 100644
--- a/lib/chef/resource/windows_feature_dism.rb
+++ b/lib/chef/resource/windows_feature_dism.rb
@@ -22,8 +22,8 @@ class Chef
resource_name :windows_feature_dism
provides :windows_feature_dism
- description "Using the windows_feature_dism resource to add, remove or "\
- "delete Windows features and roles using DISM"
+ description "Using the windows_feature_dism resource to add, remove or"\
+ " delete Windows features and roles using DISM"
introduced "14.0"
property :feature_name, [Array, String],
diff --git a/lib/chef/resource/windows_feature_powershell.rb b/lib/chef/resource/windows_feature_powershell.rb
index 60a22578fd..30f8f6da83 100644
--- a/lib/chef/resource/windows_feature_powershell.rb
+++ b/lib/chef/resource/windows_feature_powershell.rb
@@ -22,11 +22,11 @@ class Chef
resource_name :windows_feature_powershell
provides :windows_feature_powershell
- description "Use the windows_feature_powershell resource to add, remove or "\
- "delete Windows features and roles using PowerShell. This resource"\
- "offers significant speed benefits over the windows_feature_dism resource,"\
- "but requires installing the Remote Server Administration Tools on"\
- "non-server releases of Windows"
+ description "Use the windows_feature_powershell resource to add, remove or"\
+ " delete Windows features and roles using PowerShell. This resource"\
+ " offers significant speed benefits over the windows_feature_dism resource,"\
+ " but requires installing the Remote Server Administration Tools on"\
+ " non-server releases of Windows"
introduced "14.0"
property :feature_name, [Array, String],