From b33bb70dcb2731cd18a1ad9039b588b6c4de4428 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Wed, 24 Jan 2018 20:30:31 +0100 Subject: [PATCH] Fix #1044: Spelling: GetTopLevelTypeDefinitons --- ICSharpCode.Decompiler/TypeSystem/TypeSystemExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICSharpCode.Decompiler/TypeSystem/TypeSystemExtensions.cs b/ICSharpCode.Decompiler/TypeSystem/TypeSystemExtensions.cs index fab533a31..1fdc8ecf5 100644 --- a/ICSharpCode.Decompiler/TypeSystem/TypeSystemExtensions.cs +++ b/ICSharpCode.Decompiler/TypeSystem/TypeSystemExtensions.cs @@ -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. /// - public static IEnumerable GetTopLevelTypeDefinitons (this ICompilation compilation) + public static IEnumerable GetTopLevelTypeDefinitions (this ICompilation compilation) { return compilation.Assemblies.SelectMany(a => a.TopLevelTypeDefinitions); }