From 03c47ad58205cba94483d969c6bf44ad323741be Mon Sep 17 00:00:00 2001 From: Ryan Meyer Date: Fri, 10 Apr 2015 16:05:44 -0700 Subject: [PATCH] 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. --- src/Microsoft.AspNet.Http.Core/FormFeature.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNet.Http.Core/FormFeature.cs b/src/Microsoft.AspNet.Http.Core/FormFeature.cs index 33f84e37..3be19c7e 100644 --- a/src/Microsoft.AspNet.Http.Core/FormFeature.cs +++ b/src/Microsoft.AspNet.Http.Core/FormFeature.cs @@ -48,8 +48,8 @@ public bool HasFormContentType return true; } - var conentType = ContentType; - return HasApplicationFormContentType(conentType) || HasMultipartFormContentType(conentType); + var contentType = ContentType; + return HasApplicationFormContentType(contentType) || HasMultipartFormContentType(contentType); } }