Fixing doc comments for c67236141b

This commit is contained in:
Harsh Gupta 2015-04-15 14:46:29 -07:00
parent c67236141b
commit 7f68a47fde
4 changed files with 5 additions and 5 deletions

View File

@ -23,7 +23,7 @@ namespace Microsoft.AspNet.Mvc.ModelBinding.Validation
}
/// <summary>
/// Gets a list of <see cref="IClientModelValidatorProvider"/>.
/// Gets a list of <see cref="IClientModelValidatorProvider"/> instances.
/// </summary>
public IReadOnlyList<IClientModelValidatorProvider> ValidatorProviders { get; }

View File

@ -23,7 +23,7 @@ namespace Microsoft.AspNet.Mvc.ModelBinding.Validation
}
/// <summary>
/// Gets the list of <see cref="IModelValidatorProvider"/>.
/// Gets the list of <see cref="IModelValidatorProvider"/> instances.
/// </summary>
public IReadOnlyList<IModelValidatorProvider> ValidatorProviders { get; }

View File

@ -25,7 +25,7 @@ namespace Microsoft.AspNet.Mvc.ModelBinding.Validation
}
/// <summary>
/// Gets the type of the <typeparamref name="TAttribute"/> associated with this instance.
/// Gets the <typeparamref name="TAttribute"/> instance.
/// </summary>
public TAttribute Attribute
{

View File

@ -4,12 +4,12 @@
namespace Microsoft.AspNet.Mvc.ModelBinding.Validation
{
/// <summary>
/// Provides a collection of <see cref="IClientModelValidator"/>.
/// Provides a collection of <see cref="IClientModelValidator"/>s.
/// </summary>
public interface IClientModelValidatorProvider
{
/// <summary>
/// Gets set of <see cref="IClientModelValidator"/>s
/// Gets set of <see cref="IClientModelValidator"/>s
/// by updating <see cref="ClientValidatorProviderContext.Validators"/>.
/// </summary>
/// <param name="context">The <see cref="ClientModelValidationContext"/> associated with this call.</param>