diff --git a/ICSharpCode.Decompiler/CSharp/Syntax/TypeSystemAstBuilder.cs b/ICSharpCode.Decompiler/CSharp/Syntax/TypeSystemAstBuilder.cs index c8d632b0e..af98c684a 100644 --- a/ICSharpCode.Decompiler/CSharp/Syntax/TypeSystemAstBuilder.cs +++ b/ICSharpCode.Decompiler/CSharp/Syntax/TypeSystemAstBuilder.cs @@ -564,14 +564,14 @@ namespace ICSharpCode.Decompiler.CSharp.Syntax return attr; } - private IEnumerable ConvertAttributes(IEnumerable attibutes) + private IEnumerable ConvertAttributes(IEnumerable attributes) { - return attibutes.Select(a => new AttributeSection(ConvertAttribute(a))); + return attributes.Select(a => new AttributeSection(ConvertAttribute(a))); } - private IEnumerable ConvertAttributes(IEnumerable attibutes, string target) + private IEnumerable ConvertAttributes(IEnumerable attributes, string target) { - return attibutes.Select(a => new AttributeSection(ConvertAttribute(a)) { + return attributes.Select(a => new AttributeSection(ConvertAttribute(a)) { AttributeTarget = target }); }