From e9a31773a9bf0f4637c17568976c1d2c8ebcb8ef Mon Sep 17 00:00:00 2001 From: harshgMSFT Date: Thu, 29 May 2014 11:13:02 -0700 Subject: [PATCH] Fix for Issue #579 --- src/Microsoft.AspNet.Mvc.Core/ReflectedActionInvoker.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNet.Mvc.Core/ReflectedActionInvoker.cs b/src/Microsoft.AspNet.Mvc.Core/ReflectedActionInvoker.cs index a9a78d4116..0a0955f4ea 100644 --- a/src/Microsoft.AspNet.Mvc.Core/ReflectedActionInvoker.cs +++ b/src/Microsoft.AspNet.Mvc.Core/ReflectedActionInvoker.cs @@ -52,8 +52,8 @@ namespace Microsoft.AspNet.Mvc if (descriptor.MethodInfo == null) { throw new ArgumentException( - Resources.FormatPropertyOfTypeCannotBeNull(typeof(ReflectedActionDescriptor), - "MethodInfo"), + Resources.FormatPropertyOfTypeCannotBeNull("MethodInfo", + typeof(ReflectedActionDescriptor)), "descriptor"); } }