Skip to content

Commit

Permalink
Fix "sure sure" in docs (#1547)
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowOnPaper committed Apr 24, 2024
1 parent 20793d6 commit 5cd282e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/pages/getting-started/astro.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const onRequest = defineMiddleware(async (context, next) => {
});
```

Make sure sure to type `App.Locals` as well.
Make sure to type `App.Locals` as well.

```ts
// src/env.d.ts
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/getting-started/sveltekit.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const handle: Handle = async ({ event, resolve }) => {
};
```

Make sure sure to type `App.Locals` as well.
Make sure to type `App.Locals` as well.

```ts
// src/app.d.ts
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/guides/validate-session-cookies/astro.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const onRequest = defineMiddleware(async (context, next) => {
});
```

Make sure sure to type `App.Locals` as well.
Make sure to type `App.Locals` as well.

```ts
// src/env.d.ts
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/guides/validate-session-cookies/sveltekit.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const handle: Handle = async ({ event, resolve }) => {
};
```

Make sure sure to type `App.Locals` as well.
Make sure to type `App.Locals` as well.

```ts
// src/app.d.ts
Expand Down

0 comments on commit 5cd282e

Please sign in to comment.