diff options
author | Tim Smith <tsmith@chef.io> | 2018-06-13 11:26:39 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-06-13 11:26:39 -0700 |
commit | f54f8df39648f362a4f6bb7d4760ed007f2e9f43 (patch) | |
tree | 31bacd28a8f248e21c7a5e27c09e508774224b6c /lib/chef/resource/mdadm.rb | |
parent | a87f3922e90983bceaaa22f705cb6ee2bab235e4 (diff) | |
download | chef-f54f8df39648f362a4f6bb7d4760ed007f2e9f43.tar.gz |
Minor fixes from PR review
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/mdadm.rb')
-rw-r--r-- | lib/chef/resource/mdadm.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/mdadm.rb b/lib/chef/resource/mdadm.rb index aa36311e2a..3fc5b7c338 100644 --- a/lib/chef/resource/mdadm.rb +++ b/lib/chef/resource/mdadm.rb @@ -38,7 +38,7 @@ class Chef property :devices, Array, default: lazy { [] }, - description: "A comma-separated list of devices to be part of a RAID array" + description: "The devices to be part of a RAID array." property :exists, [ TrueClass, FalseClass ], default: false, @@ -50,7 +50,7 @@ class Chef property :metadata, String, default: "0.90", - description: "The superblock type for RAID metadata" + description: "The superblock type for RAID metadata." property :bitmap, String, description: "The path to a file in which a write-intent bitmap is stored." |