summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Higgins <pete@peterhiggins.org>2020-05-13 13:00:15 -0700
committerTim Smith <tsmith84@gmail.com>2020-05-18 20:29:40 -0700
commit6cfbf518fc8f8786210af279a7cd65f6b6a79ddb (patch)
treeb0a07f722d1c7aa8eeec8fdf0c909fb8c357ce5d
parent4229c4d5d6556a2f154741c3e037191afd4ad161 (diff)
downloadchef-6cfbf518fc8f8786210af279a7cd65f6b6a79ddb.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|