From 6a6deb298c8b3385213174dd023a45f6a309da5f Mon Sep 17 00:00:00 2001 From: Kirk Larkin <6025110+serpent5@users.noreply.github.com> Date: Wed, 6 Nov 2019 13:27:11 +0000 Subject: [PATCH] [Mvc] Fix cref for HttpMethodActionConstraint API docs (#16857) Switches the wrong reference from IActionResult to IActionConstraint --- .../src/ActionConstraints/HttpMethodActionConstraint.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mvc/Mvc.Core/src/ActionConstraints/HttpMethodActionConstraint.cs b/src/Mvc/Mvc.Core/src/ActionConstraints/HttpMethodActionConstraint.cs index a8a462da7e..6ee65d9f8b 100644 --- a/src/Mvc/Mvc.Core/src/ActionConstraints/HttpMethodActionConstraint.cs +++ b/src/Mvc/Mvc.Core/src/ActionConstraints/HttpMethodActionConstraint.cs @@ -9,7 +9,7 @@ using Microsoft.AspNetCore.Routing; namespace Microsoft.AspNetCore.Mvc.ActionConstraints { /// - /// The implementation of used to enforce + /// The implementation of used to enforce /// HTTP method filtering when MVC is used with legacy /// support. The can be used to determine /// the set of HTTP methods supported by an action.