Spelling mistake.

Sorry I was looking at this code trying to track down a bug somewhere else and noticed a spelling mistake for a local variable. I know I tend to be anal about spelling, so figured I'd at least point it out.
This commit is contained in:
Ryan Meyer 2015-04-10 16:05:44 -07:00
parent 58f759ac25
commit 03c47ad582
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ namespace Microsoft.AspNet.Http.Core
return true;
}
var conentType = ContentType;
return HasApplicationFormContentType(conentType) || HasMultipartFormContentType(conentType);
var contentType = ContentType;
return HasApplicationFormContentType(contentType) || HasMultipartFormContentType(contentType);
}
}