diff --git a/src/Microsoft.AspNet.Mvc.Razor.Host/MvcRazorHost.cs b/src/Microsoft.AspNet.Mvc.Razor.Host/MvcRazorHost.cs index 9b1cb2392d..aa9e01e117 100644 --- a/src/Microsoft.AspNet.Mvc.Razor.Host/MvcRazorHost.cs +++ b/src/Microsoft.AspNet.Mvc.Razor.Host/MvcRazorHost.cs @@ -41,7 +41,7 @@ namespace Microsoft.AspNet.Mvc.Razor // CodeGenerationContext.DefaultBaseClass is set to MyBaseType. // This field holds the type name without the generic decoration (MyBaseType) private readonly string _baseType; - private readonly IChunkTreeCache _ChunkTreeCache; + private readonly IChunkTreeCache _chunkTreeCache; private readonly RazorPathNormalizer _pathNormalizer; private ChunkInheritanceUtility _chunkInheritanceUtility; @@ -50,7 +50,7 @@ namespace Microsoft.AspNet.Mvc.Razor { _pathNormalizer = pathNormalizer; _baseType = BaseType; - _ChunkTreeCache = ChunkTreeCache; + _chunkTreeCache = ChunkTreeCache; TagHelperDescriptorResolver = new TagHelperDescriptorResolver(); DefaultBaseClass = BaseType + "<" + DefaultModel + ">"; @@ -188,7 +188,7 @@ namespace Microsoft.AspNet.Mvc.Razor if (_chunkInheritanceUtility == null) { // This needs to be lazily evaluated to support DefaultInheritedChunks being virtual. - _chunkInheritanceUtility = new ChunkInheritanceUtility(this, _ChunkTreeCache, DefaultInheritedChunks); + _chunkInheritanceUtility = new ChunkInheritanceUtility(this, _chunkTreeCache, DefaultInheritedChunks); } return _chunkInheritanceUtility; diff --git a/src/Microsoft.AspNet.Mvc.Razor.Host/MvcTagHelperAttributeValueCodeRenderer.cs b/src/Microsoft.AspNet.Mvc.Razor.Host/MvcTagHelperAttributeValueCodeRenderer.cs index 953407f7ca..6f11f57c07 100644 --- a/src/Microsoft.AspNet.Mvc.Razor.Host/MvcTagHelperAttributeValueCodeRenderer.cs +++ b/src/Microsoft.AspNet.Mvc.Razor.Host/MvcTagHelperAttributeValueCodeRenderer.cs @@ -32,7 +32,7 @@ namespace Microsoft.AspNet.Mvc.Razor public override void RenderAttributeValue( [NotNull] TagHelperAttributeDescriptor attributeDescriptor, [NotNull] CSharpCodeWriter writer, - [NotNull] CodeGeneratorContext CodeGeneratorContext, + [NotNull] CodeGeneratorContext codeGeneratorContext, [NotNull] Action renderAttributeValue, bool complexValue) { @@ -59,7 +59,7 @@ namespace Microsoft.AspNet.Mvc.Razor base.RenderAttributeValue( attributeDescriptor, writer, - CodeGeneratorContext, + codeGeneratorContext, renderAttributeValue, complexValue); }