diff --git a/ICSharpCode.Decompiler/TypeSystem/IAssembly.cs b/ICSharpCode.Decompiler/TypeSystem/IAssembly.cs index d7845bc4b..db5e758cc 100644 --- a/ICSharpCode.Decompiler/TypeSystem/IAssembly.cs +++ b/ICSharpCode.Decompiler/TypeSystem/IAssembly.cs @@ -52,7 +52,7 @@ namespace ICSharpCode.Decompiler.TypeSystem public interface IModule : ISymbol, ICompilationProvider { /// - /// Gets the underlying metadata file. May return null, if the IAssembly was not created from a PE file. + /// Gets the underlying metadata file. May return null, if the module was not created from a file. /// MetadataFile? MetadataFile { get; } @@ -77,12 +77,12 @@ namespace ICSharpCode.Decompiler.TypeSystem string FullAssemblyName { get; } /// - /// Gets the list of all assembly attributes in the project. + /// Gets all assembly attributes. /// IEnumerable GetAssemblyAttributes(); /// - /// Gets the list of all module attributes in the project. + /// Gets all module attributes. /// IEnumerable GetModuleAttributes();