From b97b8e335fe4aba984ba3a505be029c36098d2bb Mon Sep 17 00:00:00 2001 From: Yarden Shoham Date: Fri, 11 Aug 2023 18:57:55 +0000 Subject: [PATCH] Fix typos in `_export.ts` comments ```diff - automaticlly in develoment + automatically in development ``` Signed-off-by: Yarden Shoham --- examples/api-app/routes/_export.ts | 2 +- examples/github-oauth-middleware/routes/_export.ts | 2 +- examples/react-app/routes/_export.ts | 2 +- examples/react-mdx-app/routes/_export.ts | 2 +- examples/react-suspense-ssr/routes/_export.ts | 2 +- examples/with-unocss/react-app/routes/_export.ts | 2 +- plugins/deploy.ts | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/api-app/routes/_export.ts b/examples/api-app/routes/_export.ts index cbcf65864..ccf78f659 100644 --- a/examples/api-app/routes/_export.ts +++ b/examples/api-app/routes/_export.ts @@ -1,5 +1,5 @@ // Exports router modules for serverless env that doesn't support the dynamic import. -// This module will be updated automaticlly in develoment mode, do NOT edit it manually. +// This module will be updated automatically in development mode, do NOT edit it manually. import * as $0 from "./ws.ts"; import * as $1 from "./index.ts"; diff --git a/examples/github-oauth-middleware/routes/_export.ts b/examples/github-oauth-middleware/routes/_export.ts index bc1788c53..e56aaa162 100644 --- a/examples/github-oauth-middleware/routes/_export.ts +++ b/examples/github-oauth-middleware/routes/_export.ts @@ -1,5 +1,5 @@ // Exports router modules for serverless env that doesn't support the dynamic import. -// This module will be updated automaticlly in develoment mode, do NOT edit it manually. +// This module will be updated automatically in development mode, do NOT edit it manually. import * as $0 from "./index.tsx"; diff --git a/examples/react-app/routes/_export.ts b/examples/react-app/routes/_export.ts index a997f16af..3817d0ed2 100644 --- a/examples/react-app/routes/_export.ts +++ b/examples/react-app/routes/_export.ts @@ -1,5 +1,5 @@ // Exports router modules for serverless env that doesn't support the dynamic import. -// This module will be updated automaticlly in develoment mode, do NOT edit it manually. +// This module will be updated automatically in development mode, do NOT edit it manually. import * as $0 from "./_404.tsx"; import * as $1 from "./_app.tsx"; diff --git a/examples/react-mdx-app/routes/_export.ts b/examples/react-mdx-app/routes/_export.ts index c7ae5b715..954267978 100644 --- a/examples/react-mdx-app/routes/_export.ts +++ b/examples/react-mdx-app/routes/_export.ts @@ -1,7 +1,7 @@ /** @format */ // Exports router modules for serverless env that doesn't support the dynamic import. -// This module will be updated automaticlly in develoment mode, do NOT edit it manually. +// This module will be updated automatically in development mode, do NOT edit it manually. // deno-fmt-ignore-file // deno-lint-ignore-file // @ts-nocheck diff --git a/examples/react-suspense-ssr/routes/_export.ts b/examples/react-suspense-ssr/routes/_export.ts index bc1788c53..e56aaa162 100644 --- a/examples/react-suspense-ssr/routes/_export.ts +++ b/examples/react-suspense-ssr/routes/_export.ts @@ -1,5 +1,5 @@ // Exports router modules for serverless env that doesn't support the dynamic import. -// This module will be updated automaticlly in develoment mode, do NOT edit it manually. +// This module will be updated automatically in development mode, do NOT edit it manually. import * as $0 from "./index.tsx"; diff --git a/examples/with-unocss/react-app/routes/_export.ts b/examples/with-unocss/react-app/routes/_export.ts index a997f16af..3817d0ed2 100644 --- a/examples/with-unocss/react-app/routes/_export.ts +++ b/examples/with-unocss/react-app/routes/_export.ts @@ -1,5 +1,5 @@ // Exports router modules for serverless env that doesn't support the dynamic import. -// This module will be updated automaticlly in develoment mode, do NOT edit it manually. +// This module will be updated automatically in development mode, do NOT edit it manually. import * as $0 from "./_404.tsx"; import * as $1 from "./_app.tsx"; diff --git a/plugins/deploy.ts b/plugins/deploy.ts index dd612aba4..b18442fb5 100644 --- a/plugins/deploy.ts +++ b/plugins/deploy.ts @@ -64,7 +64,7 @@ export async function generateExportTs() { const comments = [ "// Exports router modules for serverless env that doesn't support the dynamic import.", - "// This module will be updated automaticlly in develoment mode, do NOT edit it manually.", + "// This module will be updated automatically in development mode, do NOT edit it manually.", ]; const imports: string[] = []; const revives: string[] = [];