[Mvc] Fix cref for HttpMethodActionConstraint API docs (#16857)

Switches the wrong reference from IActionResult to IActionConstraint
This commit is contained in:
Kirk Larkin 2019-11-06 13:27:11 +00:00 committed by Javier Calvarro Nelson
parent 81379147e6
commit 6a6deb298c
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ using Microsoft.AspNetCore.Routing;
namespace Microsoft.AspNetCore.Mvc.ActionConstraints
{
/// <summary>
/// The implementation of <see cref="IActionResult" /> used to enforce
/// The implementation of <see cref="IActionConstraint" /> used to enforce
/// HTTP method filtering when MVC is used with legacy <see cref="IRouter" />
/// support. The <see cref="HttpMethodActionConstraint" /> can be used to determine
/// the set of HTTP methods supported by an action.