Browse Source

XML doc corrections

pull/3307/head
Siegfried Pammer 7 months ago
parent
commit
90946ae31a
  1. 6
      ICSharpCode.Decompiler/TypeSystem/IAssembly.cs

6
ICSharpCode.Decompiler/TypeSystem/IAssembly.cs

@ -52,7 +52,7 @@ namespace ICSharpCode.Decompiler.TypeSystem @@ -52,7 +52,7 @@ namespace ICSharpCode.Decompiler.TypeSystem
public interface IModule : ISymbol, ICompilationProvider
{
/// <summary>
/// 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.
/// </summary>
MetadataFile? MetadataFile { get; }
@ -77,12 +77,12 @@ namespace ICSharpCode.Decompiler.TypeSystem @@ -77,12 +77,12 @@ namespace ICSharpCode.Decompiler.TypeSystem
string FullAssemblyName { get; }
/// <summary>
/// Gets the list of all assembly attributes in the project.
/// Gets all assembly attributes.
/// </summary>
IEnumerable<IAttribute> GetAssemblyAttributes();
/// <summary>
/// Gets the list of all module attributes in the project.
/// Gets all module attributes.
/// </summary>
IEnumerable<IAttribute> GetModuleAttributes();

Loading…
Cancel
Save