summaryrefslogtreecommitdiff
path: root/lib/chef/resource/chocolatey_package.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/chocolatey_package.rb')
-rw-r--r--lib/chef/resource/chocolatey_package.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/chef/resource/chocolatey_package.rb b/lib/chef/resource/chocolatey_package.rb
index 04e5f3602c..76ef173ff5 100644
--- a/lib/chef/resource/chocolatey_package.rb
+++ b/lib/chef/resource/chocolatey_package.rb
@@ -31,20 +31,20 @@ class Chef
# windows can't take Array options yet
property :options, String,
- description: "One (or more) additional options that are passed to the command."
+ description: "One (or more) additional options that are passed to the command."
property :package_name, [String, Array],
- description: "The name of the package. Default value: the name of the resource block.",
- coerce: proc { |x| [x].flatten }
+ description: "The name of the package. Default value: the name of the resource block.",
+ coerce: proc { |x| [x].flatten }
property :version, [String, Array],
- description: "The version of a package to be installed or upgraded.",
- coerce: proc { |x| [x].flatten }
+ description: "The version of a package to be installed or upgraded.",
+ coerce: proc { |x| [x].flatten }
property :returns, [Integer, Array],
- description: "The exit code(s) returned a chocolatey package that indicate success.",
- default: [ 0 ], desired_state: false,
- introduced: "12.18"
+ description: "The exit code(s) returned a chocolatey package that indicate success.",
+ default: [ 0 ], desired_state: false,
+ introduced: "12.18"
end
end
end