diff options
author | Tim Smith <tsmith84@gmail.com> | 2021-02-15 13:01:38 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2021-02-15 13:01:38 -0800 |
commit | b3057cc7f55fadd57e54dba45242f692806bc2ba (patch) | |
tree | 2d4a8511bb6ecb8813e89a9d85c2986673d005a2 /lib/chef/resource/windows_path.rb | |
parent | 7eb9179ed6eaf024f62546001544ea2caa3d184c (diff) | |
download | chef-docs.tar.gz |
Improve automatic docs generationdocs
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/windows_path.rb')
-rw-r--r-- | lib/chef/resource/windows_path.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/windows_path.rb b/lib/chef/resource/windows_path.rb index 870ffdef3f..f0cc316e66 100644 --- a/lib/chef/resource/windows_path.rb +++ b/lib/chef/resource/windows_path.rb @@ -64,7 +64,7 @@ class Chef end end - action :add do + action :add, description: "Add an item to the system path" do # The windows Env provider does not correctly expand variables in # the PATH environment variable. Ruby expects these to be expanded. # @@ -76,7 +76,7 @@ class Chef end end - action :remove do + action :remove, description: "Remove an item from the system path" do # The windows Env provider does not correctly expand variables in # the PATH environment variable. Ruby expects these to be expanded. # |