diff --git a/src/Microsoft.AspNet.Mvc.Core/MvcOptions.cs b/src/Microsoft.AspNet.Mvc.Core/MvcOptions.cs index 2d1db68fe5..d2d6004bfb 100644 --- a/src/Microsoft.AspNet.Mvc.Core/MvcOptions.cs +++ b/src/Microsoft.AspNet.Mvc.Core/MvcOptions.cs @@ -71,7 +71,7 @@ namespace Microsoft.AspNet.Mvc public List InputFormatters { get; private set; } /// - /// Gets a list of which return whether the given type + /// Gets a list of which return whether the given type /// should be excluded from Validation in /// public List ExcludeFromValidationDelegates { get; } diff --git a/src/Microsoft.AspNet.Mvc.Core/OptionDescriptors/ExcludeFromValidationDelegateExtensions.cs b/src/Microsoft.AspNet.Mvc.Core/OptionDescriptors/ExcludeFromValidationDelegateExtensions.cs index 6fab7e2cdf..7aa96d6435 100644 --- a/src/Microsoft.AspNet.Mvc.Core/OptionDescriptors/ExcludeFromValidationDelegateExtensions.cs +++ b/src/Microsoft.AspNet.Mvc.Core/OptionDescriptors/ExcludeFromValidationDelegateExtensions.cs @@ -8,13 +8,13 @@ using Microsoft.AspNet.Mvc.ModelBinding; namespace Microsoft.AspNet.Mvc { /// - /// Extensions for . + /// Extensions for . /// public static class ExcludeFromValidationDelegateExtensions { /// - /// Adds a delegate to the specified that excludes the properties of the specified type - /// and and it's derived types from validation. + /// Adds a delegate to the specified + /// that exludes the properties of the specified and it's derived types from validaton. /// /// of . /// which should be excluded from validation. diff --git a/src/Microsoft.AspNet.Mvc.ModelBinding/Validation/ExcludeFromValidationDelegate.cs b/src/Microsoft.AspNet.Mvc.ModelBinding/Validation/ExcludeFromValidationDelegate.cs index ed28bc598c..e91cd3acd5 100644 --- a/src/Microsoft.AspNet.Mvc.ModelBinding/Validation/ExcludeFromValidationDelegate.cs +++ b/src/Microsoft.AspNet.Mvc.ModelBinding/Validation/ExcludeFromValidationDelegate.cs @@ -6,9 +6,9 @@ using System; namespace Microsoft.AspNet.Mvc.ModelBinding { /// - /// Delegate that determines if the specified type is excluded from validation. + /// Delegate that determines if the specified is excluded from validation. /// /// which needs to be checked. - /// if excluded, otherwise. + /// true if excluded, false otherwise. public delegate bool ExcludeFromValidationDelegate(Type type); } \ No newline at end of file