From 38e9930ba08b4663e20f6beb71b0bf81fe2ef00c Mon Sep 17 00:00:00 2001 From: Stuart Mosquera Date: Tue, 29 Jul 2025 22:23:41 -0300 Subject: [PATCH] remove redundant tag in IAsyncResultFilter and IResultFilter interfaces --- src/Mvc/Mvc.Abstractions/src/Filters/IAsyncResultFilter.cs | 2 +- src/Mvc/Mvc.Abstractions/src/Filters/IResultFilter.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mvc/Mvc.Abstractions/src/Filters/IAsyncResultFilter.cs b/src/Mvc/Mvc.Abstractions/src/Filters/IAsyncResultFilter.cs index 0a8fdabbf812..a938939796c6 100644 --- a/src/Mvc/Mvc.Abstractions/src/Filters/IAsyncResultFilter.cs +++ b/src/Mvc/Mvc.Abstractions/src/Filters/IAsyncResultFilter.cs @@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Mvc.Filters; /// /// and instances are not executed in cases where /// an authorization filter or resource filter short-circuits the request to prevent execution of the action. -/// . and implementations +/// and implementations /// are also not executed in cases where an exception filter handles an exception by producing an action result. /// /// diff --git a/src/Mvc/Mvc.Abstractions/src/Filters/IResultFilter.cs b/src/Mvc/Mvc.Abstractions/src/Filters/IResultFilter.cs index 69c87abd8132..b47ca1fa1470 100644 --- a/src/Mvc/Mvc.Abstractions/src/Filters/IResultFilter.cs +++ b/src/Mvc/Mvc.Abstractions/src/Filters/IResultFilter.cs @@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Mvc.Filters; /// /// and instances are not executed in cases where /// an authorization filter or resource filter short-circuits the request to prevent execution of the action. -/// . and implementations +/// and implementations /// are also not executed in cases where an exception filter handles an exception by producing an action result. /// ///