From 32b54b4419ee02b2d7fdb5e8c5d085e8d6d1e74a Mon Sep 17 00:00:00 2001 From: Lee Robinson Date: Fri, 7 Jul 2023 07:41:08 -0700 Subject: [PATCH] Update docs/02-app/01-building-your-application/01-routing/10-router-handlers.mdx --- .../01-routing/10-router-handlers.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-app/01-building-your-application/01-routing/10-router-handlers.mdx b/docs/02-app/01-building-your-application/01-routing/10-router-handlers.mdx index 1359992c806c..3b5fdf9c28a5 100644 --- a/docs/02-app/01-building-your-application/01-routing/10-router-handlers.mdx +++ b/docs/02-app/01-building-your-application/01-routing/10-router-handlers.mdx @@ -546,7 +546,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 the `request.formData()` function: ```ts filename="app/items/route.ts" switcher import { NextResponse } from 'next/server'