diff options
author | Tim Smith <tsmith@chef.io> | 2021-05-20 14:29:47 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2021-05-20 14:29:47 -0700 |
commit | a1530b84cd1de95bef7a08f7bfa9594cb6fae16b (patch) | |
tree | c58a00e4a8c2f54dd3ced05d5ea4edcdd3c43876 | |
parent | 3a5b225af9c28d5bdb828fa3a3ec6cab35c4d1d9 (diff) | |
download | chef-a1530b84cd1de95bef7a08f7bfa9594cb6fae16b.tar.gz |
Properly generate the docs markdown notes sections
Turns out I had this wrong
Signed-off-by: Tim Smith <tsmith@chef.io>
-rwxr-xr-x | tasks/docs.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/docs.rb b/tasks/docs.rb index 78e9c13b2c..aba7524402 100755 --- a/tasks/docs.rb +++ b/tasks/docs.rb @@ -236,7 +236,7 @@ namespace :docs_site do case preface when "Note:" - description << { "note" => [element] } + description << { "note" => element } when "Warning:" description << { "warning" => [element] } when nil |