diff --git a/src/Mvc/Mvc.Core/src/Routing/ConsumesMatcherPolicy.cs b/src/Mvc/Mvc.Core/src/Routing/ConsumesMatcherPolicy.cs index dbc65f26f46d..0425443a8e3a 100644 --- a/src/Mvc/Mvc.Core/src/Routing/ConsumesMatcherPolicy.cs +++ b/src/Mvc/Mvc.Core/src/Routing/ConsumesMatcherPolicy.cs @@ -65,7 +65,7 @@ public Task ApplyAsync(HttpContext httpContext, CandidateSet candidates) throw new ArgumentNullException(nameof(candidates)); } - // We want to return a 415 iff we eliminated ALL of the currently valid endpoints due to content type + // We want to return a 415 if we eliminated ALL of the currently valid endpoints due to content type // mismatch. bool? needs415Endpoint = null;