Stylecop fixes

This commit is contained in:
harshgMSFT 2014-08-01 14:21:00 -07:00
parent 19f3f78b3e
commit 11d6c507f9
2 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ namespace Microsoft.AspNet.Mvc
{
// Ignore the passed in content type, if the object is string
// always return it as a text/plain format.
if(context.DeclaredType == typeof(string))
if (context.DeclaredType == typeof(string))
{
return true;
}