Fix an out-of-date comment

This commit is contained in:
Ryan Nowak 2015-07-09 12:31:22 -07:00
parent 48bfdceea6
commit 2d62553122
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}