From 7479801ff998d5959a75bcdf3e71d14b8a338901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Kr=C3=BCger?= Date: Thu, 7 Feb 2013 09:55:09 +0100 Subject: [PATCH] Fixed ReducedFrom description. --- ICSharpCode.NRefactory/TypeSystem/IMethod.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ICSharpCode.NRefactory/TypeSystem/IMethod.cs b/ICSharpCode.NRefactory/TypeSystem/IMethod.cs index 201acfb94f..3faeb0b8aa 100644 --- a/ICSharpCode.NRefactory/TypeSystem/IMethod.cs +++ b/ICSharpCode.NRefactory/TypeSystem/IMethod.cs @@ -134,7 +134,8 @@ namespace ICSharpCode.NRefactory.TypeSystem IMember AccessorOwner { get; } /// - /// If this method is reduced from an extension method return the original method, null otherwhise. + /// If this method is reduced from an extension method return the original method, null otherwise. + /// A reduced method doesn't contain the extension method parameter. That means that has one parameter less than it's definition. /// IMethod ReducedFrom { get; } }