1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 20:11:20 +00:00

doc/build_plugin_doc: Fix typo in function name

This commit is contained in:
Marc Bonnici 2018-05-08 13:57:40 +01:00 committed by setrofim
parent 629abb1afc
commit 9251febafb

View File

@ -55,11 +55,11 @@ def generate_plugin_documentation(source_dir, outdir, ignore_paths):
title = ' '.join([capitalize(w) for w in ext_type.split('_')])
wfh.write(underline('{}s'.format(title)))
wfh.write(insert_contents_table())
wfh.write(break_line())
wfh.write(line_break())
exts = pluginloader.list_plugins(ext_type)
for ext in sorted(exts, key=lambda x: x.name):
wfh.write(get_rst_from_plugin(ext))
wfh.write(break_line())
wfh.write(line_break())
def generate_target_documentation(outdir):