Skip to content

Commit f19f327

Browse files
remove redundant tag in IAsyncResultFilter and IResultFilter interfaces (#62999)
1 parent 29f49f3 commit f19f327

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Mvc/Mvc.Abstractions/src/Filters/IAsyncResultFilter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Mvc.Filters;
1414
/// <para>
1515
/// <see cref="IResultFilter"/> and <see cref="IAsyncResultFilter"/> instances are not executed in cases where
1616
/// an authorization filter or resource filter short-circuits the request to prevent execution of the action.
17-
/// <see cref="IResultFilter"/>. <see cref="IResultFilter"/> and <see cref="IAsyncResultFilter"/> implementations
17+
/// <see cref="IResultFilter"/> and <see cref="IAsyncResultFilter"/> implementations
1818
/// are also not executed in cases where an exception filter handles an exception by producing an action result.
1919
/// </para>
2020
/// <para>

src/Mvc/Mvc.Abstractions/src/Filters/IResultFilter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Mvc.Filters;
1414
/// <para>
1515
/// <see cref="IResultFilter"/> and <see cref="IAsyncResultFilter"/> instances are not executed in cases where
1616
/// an authorization filter or resource filter short-circuits the request to prevent execution of the action.
17-
/// <see cref="IResultFilter"/>. <see cref="IResultFilter"/> and <see cref="IAsyncResultFilter"/> implementations
17+
/// <see cref="IResultFilter"/> and <see cref="IAsyncResultFilter"/> implementations
1818
/// are also not executed in cases where an exception filter handles an exception by producing an action result.
1919
/// </para>
2020
/// <para>

0 commit comments

Comments
 (0)