Skip to content

Commit b65a82a

Browse files
authored
Fix typos in _export.ts comments (#565)
```diff - automaticlly in develoment + automatically in development ``` Signed-off-by: Yarden Shoham <[email protected]>
1 parent a2e4a4e commit b65a82a

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

examples/api-app/routes/_export.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Exports router modules for serverless env that doesn't support the dynamic import.
2-
// This module will be updated automaticlly in develoment mode, do NOT edit it manually.
2+
// This module will be updated automatically in development mode, do NOT edit it manually.
33

44
import * as $0 from "./ws.ts";
55
import * as $1 from "./index.ts";

examples/github-oauth-middleware/routes/_export.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Exports router modules for serverless env that doesn't support the dynamic import.
2-
// This module will be updated automaticlly in develoment mode, do NOT edit it manually.
2+
// This module will be updated automatically in development mode, do NOT edit it manually.
33

44
import * as $0 from "./index.tsx";
55

examples/react-app/routes/_export.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Exports router modules for serverless env that doesn't support the dynamic import.
2-
// This module will be updated automaticlly in develoment mode, do NOT edit it manually.
2+
// This module will be updated automatically in development mode, do NOT edit it manually.
33

44
import * as $0 from "./_404.tsx";
55
import * as $1 from "./_app.tsx";

examples/react-mdx-app/routes/_export.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @format */
22

33
// Exports router modules for serverless env that doesn't support the dynamic import.
4-
// This module will be updated automaticlly in develoment mode, do NOT edit it manually.
4+
// This module will be updated automatically in development mode, do NOT edit it manually.
55
// deno-fmt-ignore-file
66
// deno-lint-ignore-file
77
// @ts-nocheck

examples/react-suspense-ssr/routes/_export.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Exports router modules for serverless env that doesn't support the dynamic import.
2-
// This module will be updated automaticlly in develoment mode, do NOT edit it manually.
2+
// This module will be updated automatically in development mode, do NOT edit it manually.
33

44
import * as $0 from "./index.tsx";
55

examples/with-unocss/react-app/routes/_export.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Exports router modules for serverless env that doesn't support the dynamic import.
2-
// This module will be updated automaticlly in develoment mode, do NOT edit it manually.
2+
// This module will be updated automatically in development mode, do NOT edit it manually.
33

44
import * as $0 from "./_404.tsx";
55
import * as $1 from "./_app.tsx";

plugins/deploy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export async function generateExportTs() {
6464

6565
const comments = [
6666
"// Exports router modules for serverless env that doesn't support the dynamic import.",
67-
"// This module will be updated automaticlly in develoment mode, do NOT edit it manually.",
67+
"// This module will be updated automatically in development mode, do NOT edit it manually.",
6868
];
6969
const imports: string[] = [];
7070
const revives: string[] = [];

0 commit comments

Comments
 (0)