Fixing comment typos

This commit is contained in:
Steve Smith 2016-11-29 15:48:59 -05:00 committed by Kiran Challa
parent 1dd1d49321
commit 6fbe514626
1 changed files with 3 additions and 3 deletions

View File

@ -4,14 +4,14 @@
namespace Microsoft.AspNetCore.Mvc.ApplicationModels
{
/// <summary>
/// Allows customization of the of the <see cref="ActionModel"/>.
/// Allows customization of the <see cref="ActionModel"/>.
/// </summary>
/// <remarks>
/// To use this interface, create an <see cref="System.Attribute"/> class which implements the interface and
/// place it on an action method.
///
/// <see cref="IActionModelConvention"/> customizations run after
/// <see cref="IActionModelConvention"/> customications and before
/// <see cref="IActionModelConvention"/> customizations and before
/// <see cref="IParameterModelConvention"/> customizations.
/// </remarks>
public interface IActionModelConvention
@ -22,4 +22,4 @@ namespace Microsoft.AspNetCore.Mvc.ApplicationModels
/// <param name="action">The <see cref="ActionModel"/>.</param>
void Apply(ActionModel action);
}
}
}