From 12a81e91f1834ea896fcda8b16180d8804205845 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Sharma?= <737941+loic-sharma@users.noreply.github.com> Date: Sun, 30 Mar 2025 13:28:48 -0700 Subject: [PATCH 1/2] Update getting-started.mdx --- docs/getting-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.mdx b/docs/getting-started.mdx index 8520b0ed..a5342ccb 100644 --- a/docs/getting-started.mdx +++ b/docs/getting-started.mdx @@ -102,7 +102,7 @@ title: Usage # How to use my project ``` -When users vist the `/usage` page on your documentation site, they will see the content of this file. To create a nested page, you can create a subdirectory inside of the `docs/` directory, +When users visit the `/usage` page on your documentation site, they will see the content of this file. To create a nested page, you can create a subdirectory inside of the `docs/` directory, for example `docs/platforms/windows/index.mdx`: ```mdx title="docs/platforms/windows/index.mdx" From d637280134f2edaa4ff5e9a6ed0d45cf019cfc16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Sharma?= <737941+loic-sharma@users.noreply.github.com> Date: Sun, 30 Mar 2025 13:30:00 -0700 Subject: [PATCH 2/2] Update init.ts --- packages/cli/src/commands/init.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/commands/init.ts b/packages/cli/src/commands/init.ts index f02c14b0..fbc0713c 100644 --- a/packages/cli/src/commands/init.ts +++ b/packages/cli/src/commands/init.ts @@ -102,7 +102,7 @@ export function registerInitCommand(program: Command) { console.log( chalk.green("Initialization complete."), - "To preview your documentation site, vist https://docs.page/preview in your browser.", + "To preview your documentation site, visit https://docs.page/preview in your browser.", ); }); }