From 7b9a926b2866fcfca48fe3caa3cb0b6e4035b7c4 Mon Sep 17 00:00:00 2001 From: Arka Poddar Date: Fri, 5 May 2023 02:24:59 +0530 Subject: [PATCH] typo fix (#29166) * typo fix * Update aspnetcore/fundamentals/minimal-apis/includes/route-handlers.md Co-authored-by: Tom Dykstra --------- Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Co-authored-by: Tom Dykstra --- aspnetcore/fundamentals/minimal-apis/includes/route-handlers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/minimal-apis/includes/route-handlers.md b/aspnetcore/fundamentals/minimal-apis/includes/route-handlers.md index 95f7127fd3..c190b61944 100644 --- a/aspnetcore/fundamentals/minimal-apis/includes/route-handlers.md +++ b/aspnetcore/fundamentals/minimal-apis/includes/route-handlers.md @@ -1,4 +1,4 @@ -Route handlers are methods that execute when the route matches. Route handlers can be a function of any shape, including synchronous or asynchronous. Route handlers can be a lambda expression, a local function, an instance method or a static method. +Route handlers are methods that execute when the route matches. Route handlers can be a lambda expression, a local function, an instance method or a static method. Route handlers can be synchronous or asynchronous. ### Lambda expression