summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <454857+lamont-granquist@users.noreply.github.com>2021-10-14 10:38:19 -0700
committerGitHub <noreply@github.com>2021-10-14 10:38:19 -0700
commita485f16fb572b0096d5a468197dbd18bff78ccde (patch)
tree4b453a344287305a9cb2db4ab7a520a554fdbf70
parent8c796d3ade17ebedcbb57a6ec14dedd44f4f5fd9 (diff)
parentad90bfd97508493b38e9d2422d499c4812016fff (diff)
downloadchef-a485f16fb572b0096d5a468197dbd18bff78ccde.tar.gz
Merge pull request #12166 from jgitlin-p21/main
-rw-r--r--lib/chef/resource/directory.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/directory.rb b/lib/chef/resource/directory.rb
index d51fb144f7..d487b6013e 100644
--- a/lib/chef/resource/directory.rb
+++ b/lib/chef/resource/directory.rb
@@ -46,7 +46,7 @@ class Chef
description: "The path to the directory. Using a fully qualified path is recommended, but is not always required."
property :recursive, [ TrueClass, FalseClass ],
- description: "Create or delete parent directories recursively. For the owner, group, and mode properties, the value of this property applies only to the leaf directory.",
+ description: "Create parent directories recursively, or delete direcory and all children recursively. For the owner, group, and mode properties, the value of this property applies only to the leaf directory.",
default: false
end
end