diff options
author | Lance Albertson <lance@osuosl.org> | 2019-09-16 11:35:19 -0700 |
---|---|---|
committer | Lance Albertson <lance@osuosl.org> | 2019-09-16 11:35:29 -0700 |
commit | 0008950ddf2ecbe1bd9e93248c3e8268157ecad2 (patch) | |
tree | af0cfd08d4b12b5ec346bdcfdabdd7dcadb305a6 /lib | |
parent | 1d660831dafd2a6d63b3517342dffe6228437241 (diff) | |
download | chef-0008950ddf2ecbe1bd9e93248c3e8268157ecad2.tar.gz |
Add missing comma
Signed-off-by: Lance Albertson <lance@osuosl.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chef/resource/kernel_module.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/kernel_module.rb b/lib/chef/resource/kernel_module.rb index d25d512a51..2f9b7748f6 100644 --- a/lib/chef/resource/kernel_module.rb +++ b/lib/chef/resource/kernel_module.rb @@ -67,7 +67,7 @@ class Chef name_property: true, identity: true property :options, Array, - description: "An optional property to set options for the kernel module." + description: "An optional property to set options for the kernel module.", introduced: "15.4" property :load_dir, String, |