diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-12-29 11:21:35 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-12-30 11:43:53 -0800 |
commit | 0cd1588b5b53028cdbb2c405002f20e4a6ebf986 (patch) | |
tree | 31d3fcce778b282354c2685356e4f9e9b7a91ad1 /lib | |
parent | 168813cb66e94a70331da91df7d83825f08143ee (diff) | |
download | chef-0cd1588b5b53028cdbb2c405002f20e4a6ebf986.tar.gz |
Fix escaping in doc string.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chef/resource/windows_certificate.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/windows_certificate.rb b/lib/chef/resource/windows_certificate.rb index 930c5ae6a4..f535b3f105 100644 --- a/lib/chef/resource/windows_certificate.rb +++ b/lib/chef/resource/windows_certificate.rb @@ -69,7 +69,7 @@ class Chef description: "The password to access the source if it is a pfx file." property :private_key_acl, Array, - description: "An array of 'domain\account' entries to be granted read-only access to the certificate's private key. Not idempotent." + description: "An array of 'domain\\account' entries to be granted read-only access to the certificate's private key. Not idempotent." property :store_name, String, description: "The certificate store to manipulate.", |