diff options
author | Tim Smith <tsmith@chef.io> | 2021-07-13 12:21:35 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2021-07-13 12:21:35 -0700 |
commit | a36172561cc2371c34190833462505988b3c5875 (patch) | |
tree | 4299157cad27673a60b05f0c11d06e33337eb32c /tasks/docs.rb | |
parent | b6ecd6a398b74ce3870c410bb151277ae83c7b2e (diff) | |
download | chef-a36172561cc2371c34190833462505988b3c5875.tar.gz |
Handle mash types in docs
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'tasks/docs.rb')
-rwxr-xr-x | tasks/docs.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tasks/docs.rb b/tasks/docs.rb index ce3af47c62..d12d88130c 100755 --- a/tasks/docs.rb +++ b/tasks/docs.rb @@ -107,6 +107,8 @@ namespace :docs_site do "false" when "NilClass" nil + when "ChefUtils::Mash" + "Mash (Hash-like)" else x end |