From 54223920a0002439d9f7a64bc7e14b99e033405b Mon Sep 17 00:00:00 2001 From: Steve Gordon Date: Mon, 1 Jun 2020 07:57:35 +0100 Subject: [PATCH] Fix comment typo --- src/Mvc/Mvc.Core/src/Routing/ConsumesMatcherPolicy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;