From eafce7d6cf90384b43903dffc973fd32480fc3c0 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Sat, 9 Jun 2018 22:57:52 +0200 Subject: [PATCH] Fix documentation comment on DynamicInvocationType.ObjectCreation --- .../CSharp/Resolver/DynamicInvocationResolveResult.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICSharpCode.Decompiler/CSharp/Resolver/DynamicInvocationResolveResult.cs b/ICSharpCode.Decompiler/CSharp/Resolver/DynamicInvocationResolveResult.cs index 577f316ac..c9bc53cf4 100644 --- a/ICSharpCode.Decompiler/CSharp/Resolver/DynamicInvocationResolveResult.cs +++ b/ICSharpCode.Decompiler/CSharp/Resolver/DynamicInvocationResolveResult.cs @@ -36,7 +36,7 @@ namespace ICSharpCode.Decompiler.CSharp.Resolver Indexing, /// - /// The invocation is an object creation ( 'new a(b)' ). Also used when invoking a base constructor ( ' : base(a) ' ) and chaining constructors ( ' : this(a) '). + /// The invocation is an object creation ( 'new a(b)' ). /// ObjectCreation, }