Skip to content

Commit

Permalink
Fix typo in website (#758)
Browse files Browse the repository at this point in the history
  • Loading branch information
dtslvr authored Sep 1, 2024
1 parent d2005a0 commit 6659773
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/website/src/docs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function copyGettingStarted() {
const outputPath = `${packagesPath}/website/site/docs`;
const originalFileText = await fs.readFile(`${rootPath}/README.md`, "utf8");
let newFileText = "---\n";
newFileText += `title: 'Getting Started Guilde'\n`;
newFileText += `title: 'Getting Started Guide'\n`;
newFileText += `order: 1\n`;
//newFileText += `parent: '${parent}'\n`;
newFileText += "---\n";
Expand Down Expand Up @@ -87,4 +87,4 @@ async function createDoc(packageName: string, path: string, outputPath: string)
await fs.writeFile(`${outputPath}/${newFileName}`, newFileText);
}

main();
main();

0 comments on commit 6659773

Please sign in to comment.