Skip to content

Commit

Permalink
docs: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Barbapapazes committed Feb 25, 2024
1 parent 9d9940a commit 0be9ac8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/2.utils/1.request.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export default defineEventHandler(async (event) => {
**Example:**

```ts
import { z } from 'zod';
import { z } from "zod";
export default defineEventHandler(async (event) => {
const objectSchema = z.object();
const body = await readValidatedBody(event, objectSchema.safeParse);
Expand Down
2 changes: 1 addition & 1 deletion src/utils/body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export async function readBody<
* });
* });
* @example
* import { z } from 'zod';
* import { z } from "zod";
*
* export default defineEventHandler(async (event) => {
* const objectSchema = z.object();
Expand Down

0 comments on commit 0be9ac8

Please sign in to comment.