docgen: updated title

This commit is contained in:
Patrik Oldsberg
2020-07-16 15:48:17 +02:00
parent d873963849
commit 4cd6774b02
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ export default class ApiDocPrinter {
printApiIndex(apiDocs: ApiDoc[]): Buffer {
const printer = this.printerFactory();
printer.header(1, 'Backstage Utility APIs');
printer.header(1, 'Backstage Core Utility APIs');
printer.paragraph(
'The following is a list of all Utility APIs defined by `@backstage/core`.',
+1 -1
View File
@@ -85,7 +85,7 @@ export async function generate(targetPath: string) {
await fs.writeFile(
resolvePath(targetDir, 'mkdocs.yml'),
[
'site_name: api-references',
'site_name: Backstage Core Utility API References',
'nav:',
` - API Index: 'README.md'`,
...apiTypes.map(({ name }) => ` - ${name}: '${name}.md'`),