From 2d62553122ac54db3786d9a827e4f3c82990cd73 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Thu, 9 Jul 2015 12:31:22 -0700 Subject: [PATCH] Fix an out-of-date comment --- .../Controllers/ConsumesAttribute_OveridesBaseController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/WebSites/ActionConstraintsWebSite/Controllers/ConsumesAttribute_OveridesBaseController.cs b/test/WebSites/ActionConstraintsWebSite/Controllers/ConsumesAttribute_OveridesBaseController.cs index 7f6eaad525..ca5889925b 100644 --- a/test/WebSites/ActionConstraintsWebSite/Controllers/ConsumesAttribute_OveridesBaseController.cs +++ b/test/WebSites/ActionConstraintsWebSite/Controllers/ConsumesAttribute_OveridesBaseController.cs @@ -11,7 +11,7 @@ namespace ActionConstraintsWebSite [Consumes("text/json")] public Product CreateProduct([FromBody] Product_Json product) { - // should be picked if request content type is application/xml and not application/json. + // should be picked if request content type is text/json and not application/json. product.SampleString = "ConsumesAttribute_OverridesBaseController_text/json"; return product; }