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:
parent
58f759ac25
commit
03c47ad582
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue