diff options
author | Tim Smith <tsmith84@gmail.com> | 2021-02-07 11:52:29 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2021-02-07 11:52:29 -0800 |
commit | 15489c9ad32f5f83b0be49bb11fd74927c29f2eb (patch) | |
tree | 9711a7541691454fae9a9d26f79a4c4d3d110ef9 /lib | |
parent | e9690b257075b490d0bec9139707f708c3090d90 (diff) | |
download | chef-15489c9ad32f5f83b0be49bb11fd74927c29f2eb.tar.gz |
Move description to a single line
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chef/resource/windows_env.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/chef/resource/windows_env.rb b/lib/chef/resource/windows_env.rb index a714ef5aaa..7620e90bad 100644 --- a/lib/chef/resource/windows_env.rb +++ b/lib/chef/resource/windows_env.rb @@ -193,8 +193,7 @@ class Chef end end - action :create, description: "Create an environment variable. If an environment variable - already exists (but does not match), update that environment variable to match." do + action :create, description: "Create an environment variable. If an environment variable already exists (but does not match), update that environment variable to match." do if key_exists? if requires_modify_or_create? modify_env @@ -216,8 +215,7 @@ class Chef end end - action :modify, description: "Modify an existing environment variable. This prepends the new value - to the existing value, using the delimiter specified by the `delim` property." do + action :modify, description: "Modify an existing environment variable. This prepends the new value to the existing value, using the delimiter specified by the `delim` property." do if key_exists? if requires_modify_or_create? modify_env |