summaryrefslogtreecommitdiff
path: root/lib/chef/resource/sudo.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/sudo.rb')
-rw-r--r--lib/chef/resource/sudo.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/resource/sudo.rb b/lib/chef/resource/sudo.rb
index 159291f41e..377e0e432e 100644
--- a/lib/chef/resource/sudo.rb
+++ b/lib/chef/resource/sudo.rb
@@ -88,15 +88,15 @@ class Chef
default: lazy { [] }
property :setenv, [TrueClass, FalseClass],
- description: "Determines whether or not to permit preservation of the environment with 'sudo -E'.",
+ description: "Determines whether or not to permit preservation of the environment with `sudo -E`.",
default: false
property :env_keep_add, Array,
- description: "An array of strings to add to env_keep.",
+ description: "An array of strings to add to `env_keep`.",
default: lazy { [] }
property :env_keep_subtract, Array,
- description: "An array of strings to remove from env_keep.",
+ description: "An array of strings to remove from `env_keep`.",
default: lazy { [] }
property :visudo_path, String,