Fixing comment typos
This commit is contained in:
parent
1dd1d49321
commit
6fbe514626
|
|
@ -4,14 +4,14 @@
|
||||||
namespace Microsoft.AspNetCore.Mvc.ApplicationModels
|
namespace Microsoft.AspNetCore.Mvc.ApplicationModels
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Allows customization of the of the <see cref="ActionModel"/>.
|
/// Allows customization of the <see cref="ActionModel"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// To use this interface, create an <see cref="System.Attribute"/> class which implements the interface and
|
/// To use this interface, create an <see cref="System.Attribute"/> class which implements the interface and
|
||||||
/// place it on an action method.
|
/// place it on an action method.
|
||||||
///
|
///
|
||||||
/// <see cref="IActionModelConvention"/> customizations run after
|
/// <see cref="IActionModelConvention"/> customizations run after
|
||||||
/// <see cref="IActionModelConvention"/> customications and before
|
/// <see cref="IActionModelConvention"/> customizations and before
|
||||||
/// <see cref="IParameterModelConvention"/> customizations.
|
/// <see cref="IParameterModelConvention"/> customizations.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public interface IActionModelConvention
|
public interface IActionModelConvention
|
||||||
|
|
@ -22,4 +22,4 @@ namespace Microsoft.AspNetCore.Mvc.ApplicationModels
|
||||||
/// <param name="action">The <see cref="ActionModel"/>.</param>
|
/// <param name="action">The <see cref="ActionModel"/>.</param>
|
||||||
void Apply(ActionModel action);
|
void Apply(ActionModel action);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue