diff --git a/aspnetcore/mvc/controllers/filters.md b/aspnetcore/mvc/controllers/filters.md index 36c8aed720..37b70689a9 100644 --- a/aspnetcore/mvc/controllers/filters.md +++ b/aspnetcore/mvc/controllers/filters.md @@ -1001,7 +1001,7 @@ Exception filters: * Handle unhandled exceptions that occur in Razor Page or controller creation, [model binding](xref:mvc/models/model-binding), action filters, or action methods. * Do **not** catch exceptions that occur in resource filters, result filters, or MVC result execution. -To handle an exception, set the property to `true` or write a response. This stops propagation of the exception. An exception filter can't turn an exception into a "success". Only an action filter can do that. +To handle an exception, set the property to `true` or assign the property. This stops propagation of the exception. An exception filter can't turn an exception into a "success". Only an action filter can do that. Exception filters: