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