From f4703dd90acdec7a832c1abe389c76ecd1606075 Mon Sep 17 00:00:00 2001 From: Michelle Vinci Date: Mon, 8 Nov 2021 16:02:51 -0800 Subject: [PATCH] fix: specify hydrogen repo --- packages/generate-docs/src/FileResult.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/generate-docs/src/FileResult.ts b/packages/generate-docs/src/FileResult.ts index 117894eaac..51b756cdfb 100644 --- a/packages/generate-docs/src/FileResult.ts +++ b/packages/generate-docs/src/FileResult.ts @@ -25,7 +25,7 @@ export class FileResult { public async writeDevDoc(path: string) { const result = inPageAnchors(this.staged.join('')); - const comment = ``; + const comment = ``; await this.write(path, [this.frontMatter, comment, result].join('\n\n')); } @@ -38,7 +38,7 @@ export class FileResult { const localPath = path.replace(resolve('.'), ''); const finalPath = resolve(path, 'README.md'); - const comment = ``; + const comment = ``; await this.write( finalPath, [comment, ...this.staged].join('\n\n').trim()