Skip to content

Commit 3a59b72

Browse files
authored
docs(start): add missing space after comma in 'Handling requests with a body' (#7234)
1 parent cbf9ecf commit 3a59b72

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/start/framework/react/guide/server-routes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ export const Route = createFileRoute('/file/$')({
314314

315315
## Handling requests with a body
316316

317-
To handle POST requests,you can add a `POST` handler to the route object. The handler will receive the request object as the first argument, and you can access the request body using the `request.json()` method.
317+
To handle POST requests, you can add a `POST` handler to the route object. The handler will receive the request object as the first argument, and you can access the request body using the `request.json()` method.
318318

319319
```ts
320320
// routes/hello.ts

docs/start/framework/solid/guide/server-routes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ export const Route = createFileRoute('/file/$')({
314314

315315
## Handling requests with a body
316316

317-
To handle POST requests,you can add a `POST` handler to the route object. The handler will receive the request object as the first argument, and you can access the request body using the `request.json()` method.
317+
To handle POST requests, you can add a `POST` handler to the route object. The handler will receive the request object as the first argument, and you can access the request body using the `request.json()` method.
318318

319319
```ts
320320
// routes/hello.ts

0 commit comments

Comments
 (0)