From eccd6272b3e80361b970372af0336894b4461fc1 Mon Sep 17 00:00:00 2001 From: Steve Gordon Date: Wed, 3 Jun 2020 21:26:24 +0100 Subject: [PATCH] Fix comment typo (#22409) --- 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 dbc65f26f4..0425443a8e 100644 --- a/src/Mvc/Mvc.Core/src/Routing/ConsumesMatcherPolicy.cs +++ b/src/Mvc/Mvc.Core/src/Routing/ConsumesMatcherPolicy.cs @@ -65,7 +65,7 @@ namespace Microsoft.AspNetCore.Mvc.Routing 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;