diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-04-29 13:30:30 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-04-29 13:30:30 -0700 |
commit | 7b208669bf442e26e9ff3280aae4418253cb2cab (patch) | |
tree | adbfa9b9fbf48eab69b6fd859e876129725d7e40 /tasks | |
parent | dfd878390cbce6f26048a24ca4e48d3ce70a9d17 (diff) | |
download | chef-7b208669bf442e26e9ff3280aae4418253cb2cab.tar.gz |
Tweak resource formatting
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'tasks')
-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 6e139406b2..4ef56d56ce 100755 --- a/tasks/docs.rb +++ b/tasks/docs.rb @@ -70,7 +70,7 @@ namespace :docs_site do def friendly_property_list(arr) return nil if arr.empty? # resources w/o properties - props = arr.map { |x| "``#{x["name"]}``" } + props = arr.map { |x| "`#{x["name"]}`" } # build the text string containing all properties bolded w/ punctuation if props.size > 1 |