From 90946ae31af7fa3e0ca9a2f6ae68568e29eadd30 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Sun, 6 Oct 2024 22:24:13 +0200 Subject: [PATCH] XML doc corrections --- ICSharpCode.Decompiler/TypeSystem/IAssembly.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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();