From 5cda9af70fa00c8e4a243aab5c6b8136fe39ea88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=BCsrev?= <59848940+hsrvms@users.noreply.github.com> Date: Sun, 13 Aug 2023 00:37:51 +0300 Subject: [PATCH] The extra word 'the' has been deleted (#53951) --- .../01-routing/10-route-handlers.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-app/01-building-your-application/01-routing/10-route-handlers.mdx b/docs/02-app/01-building-your-application/01-routing/10-route-handlers.mdx index 91638910272ea..ab028040df47a 100644 --- a/docs/02-app/01-building-your-application/01-routing/10-route-handlers.mdx +++ b/docs/02-app/01-building-your-application/01-routing/10-route-handlers.mdx @@ -568,7 +568,7 @@ export async function POST(request) { ### Request Body FormData -You can read the `FormData` using the the `request.formData()` function: +You can read the `FormData` using the `request.formData()` function: ```ts filename="app/items/route.ts" switcher import { NextResponse } from 'next/server'