Skip to content

Commit

Permalink
Fix typos in _export.ts comments (#565)
Browse files Browse the repository at this point in the history
```diff
- automaticlly in develoment
+ automatically in development
```

Signed-off-by: Yarden Shoham <[email protected]>
  • Loading branch information
yardenshoham authored Aug 13, 2023
1 parent a2e4a4e commit b65a82a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/api-app/routes/_export.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion examples/github-oauth-middleware/routes/_export.ts
Original file line number Diff line number Diff line change
@@ -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";

Expand Down
2 changes: 1 addition & 1 deletion examples/react-app/routes/_export.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion examples/react-mdx-app/routes/_export.ts
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/react-suspense-ssr/routes/_export.ts
Original file line number Diff line number Diff line change
@@ -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";

Expand Down
2 changes: 1 addition & 1 deletion examples/with-unocss/react-app/routes/_export.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion plugins/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = [];
Expand Down

0 comments on commit b65a82a

Please sign in to comment.