From 5b89485e5174dc5c2872152788fa1ced010d8e5d Mon Sep 17 00:00:00 2001 From: MukundaKatta Date: Mon, 20 Apr 2026 07:59:18 -0700 Subject: [PATCH] docs(start): add missing space after comma in 'Handling requests with a body' 'To handle POST requests,you can add' -> 'To handle POST requests, you can add' (react and solid Start guides). Refs TanStack/tanstack.com#838 --- docs/start/framework/react/guide/server-routes.md | 2 +- docs/start/framework/solid/guide/server-routes.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/start/framework/react/guide/server-routes.md b/docs/start/framework/react/guide/server-routes.md index 55e94d36d2..542b274147 100644 --- a/docs/start/framework/react/guide/server-routes.md +++ b/docs/start/framework/react/guide/server-routes.md @@ -314,7 +314,7 @@ export const Route = createFileRoute('/file/$')({ ## Handling requests with a body -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. +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. ```ts // routes/hello.ts diff --git a/docs/start/framework/solid/guide/server-routes.md b/docs/start/framework/solid/guide/server-routes.md index 3e5481bb97..543eed07ea 100644 --- a/docs/start/framework/solid/guide/server-routes.md +++ b/docs/start/framework/solid/guide/server-routes.md @@ -314,7 +314,7 @@ export const Route = createFileRoute('/file/$')({ ## Handling requests with a body -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. +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. ```ts // routes/hello.ts