summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Higgins <pete@peterhiggins.org>2020-05-13 13:00:15 -0700
committerPete Higgins <pete@peterhiggins.org>2020-05-13 13:41:54 -0700
commit35c02b2fab8738489d6e89cda39587ad69cd032d (patch)
treeab416a00a538dc5b420be48fb8f90e980fa4f82a
parent2237fbe4e8907f7144dd21aa255b7fceaf0d7f14 (diff)
downloadchef-35c02b2fab8738489d6e89cda39587ad69cd032d.tar.gz
Fix a correction.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
-rw-r--r--lib/chef/provider/remote_directory.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/remote_directory.rb b/lib/chef/provider/remote_directory.rb
index 438af967dd..0c2cce4026 100644
--- a/lib/chef/provider/remote_directory.rb
+++ b/lib/chef/provider/remote_directory.rb
@@ -245,7 +245,7 @@ class Chef
res = Chef::Resource::Directory.new(dir, run_context)
res.cookbook_name = resource_cookbook
if ChefUtils.windows? && rights
- # rights are only meant to be applied to the highest-level directory;
+ # rights are only meant to be applied to the most top-level directory;
# Windows will handle inheritance.
if dir == path
rights.each do |r|