summaryrefslogtreecommitdiff
path: root/lib/chef/resource/openssl_ec_public_key.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-08-29 11:17:07 -0700
committerTim Smith <tsmith@chef.io>2018-08-29 11:17:07 -0700
commit89e9fca8fd868882343928590ba564e685d1f185 (patch)
treedc7a663df921472eee08ca187d7b25a52ce350d5 /lib/chef/resource/openssl_ec_public_key.rb
parent3b976de66b951655658ce8918b2aa0f58c16bfec (diff)
downloadchef-89e9fca8fd868882343928590ba564e685d1f185.tar.gz
Cleanup existing property descriptions to match the docs
We fixed up some wording on the docs site. This backports those fixes Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/openssl_ec_public_key.rb')
-rw-r--r--lib/chef/resource/openssl_ec_public_key.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/resource/openssl_ec_public_key.rb b/lib/chef/resource/openssl_ec_public_key.rb
index 50b1da337f..10f656e904 100644
--- a/lib/chef/resource/openssl_ec_public_key.rb
+++ b/lib/chef/resource/openssl_ec_public_key.rb
@@ -35,10 +35,10 @@ class Chef
name_property: true
property :private_key_path, String,
- description: "The path to the private key."
+ description: "The path to the private key file."
property :private_key_content, String,
- description: "The content of the private key including new lines. Used instead of private_key_path to avoid having to first write a key to disk."
+ description: "The content of the private key including new lines. This property is used in place of private_key_path to avoid having to first write a key to disk."
property :private_key_pass, String,
description: "The passphrase of the provided private key."
@@ -50,7 +50,7 @@ class Chef
description: "The group of all files created by the resource."
property :mode, [Integer, String],
- description: "The permission mode of all files created by the resource.",
+ description: "The permission mode applied to all files created by the resource.",
default: "0640"
action :create do