Fixing comment typo

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

View File

@ -4,10 +4,10 @@
namespace Microsoft.AspNetCore.Mvc.ApplicationModels
{
/// <summary>
/// Allows customization of the of the <see cref="ApplicationModel"/>.
/// Allows customization of the <see cref="ApplicationModel"/>.
/// </summary>
/// <remarks>
/// Implementaions of this interface can be registered in <see cref="MvcOptions.Conventions"/>
/// Implementations of this interface can be registered in <see cref="MvcOptions.Conventions"/>
/// to customize metadata about the application.
///
/// <see cref="IApplicationModelConvention"/> run before other types of customizations to the
@ -21,4 +21,4 @@ namespace Microsoft.AspNetCore.Mvc.ApplicationModels
/// <param name="application">The <see cref="ApplicationModel"/>.</param>
void Apply(ApplicationModel application);
}
}
}