Browse Source

Fix #1044: Spelling: GetTopLevelTypeDefinitons

pull/1040/head
Siegfried Pammer 8 years ago
parent
commit
b33bb70dcb
  1. 2
      ICSharpCode.Decompiler/TypeSystem/TypeSystemExtensions.cs

2
ICSharpCode.Decompiler/TypeSystem/TypeSystemExtensions.cs

@ -430,7 +430,7 @@ namespace ICSharpCode.Decompiler.TypeSystem @@ -430,7 +430,7 @@ namespace ICSharpCode.Decompiler.TypeSystem
/// Gets all top level type definitions in the compilation.
/// This may include types from referenced assemblies that are not accessible in the main assembly.
/// </summary>
public static IEnumerable<ITypeDefinition> GetTopLevelTypeDefinitons (this ICompilation compilation)
public static IEnumerable<ITypeDefinition> GetTopLevelTypeDefinitions (this ICompilation compilation)
{
return compilation.Assemblies.SelectMany(a => a.TopLevelTypeDefinitions);
}

Loading…
Cancel
Save