Merge pull request #260 from ryan1234/patch-1

Spelling mistake.
This commit is contained in:
Eilon Lipton 2015-04-10 18:08:02 -07:00
commit c8f24b239d
1 changed files with 2 additions and 2 deletions

View File

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