From a1f544b62fe77d9a572d6b597dd0f9222e22c2a1 Mon Sep 17 00:00:00 2001 From: Jeremy Lawrence Date: Tue, 5 Mar 2019 17:43:59 -0500 Subject: [PATCH] Correct doc comment for ApiConventionTypeMatchBehavior (#7861) --- .../src/ApiExplorer/ApiConventionTypeMatchBehavior.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mvc/Mvc.Core/src/ApiExplorer/ApiConventionTypeMatchBehavior.cs b/src/Mvc/Mvc.Core/src/ApiExplorer/ApiConventionTypeMatchBehavior.cs index 300c7255f9..fcd7162aae 100644 --- a/src/Mvc/Mvc.Core/src/ApiExplorer/ApiConventionTypeMatchBehavior.cs +++ b/src/Mvc/Mvc.Core/src/ApiExplorer/ApiConventionTypeMatchBehavior.cs @@ -4,7 +4,7 @@ namespace Microsoft.AspNetCore.Mvc.ApiExplorer { /// - /// The behavior for matching the name of a convention parameter. + /// The behavior for matching the type of a convention parameter. /// public enum ApiConventionTypeMatchBehavior { @@ -19,4 +19,4 @@ namespace Microsoft.AspNetCore.Mvc.ApiExplorer /// AssignableFrom, } -} \ No newline at end of file +}