summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-04-29 13:30:30 -0700
committerTim Smith <tsmith84@gmail.com>2020-04-29 13:30:30 -0700
commit7b208669bf442e26e9ff3280aae4418253cb2cab (patch)
treeadbfa9b9fbf48eab69b6fd859e876129725d7e40 /tasks
parentdfd878390cbce6f26048a24ca4e48d3ce70a9d17 (diff)
downloadchef-7b208669bf442e26e9ff3280aae4418253cb2cab.tar.gz
Tweak resource formatting
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'tasks')
-rwxr-xr-xtasks/docs.rb2
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