From 6fbe5146265648c7f2db068a283de706dd3a03b6 Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Tue, 29 Nov 2016 15:48:59 -0500 Subject: [PATCH] Fixing comment typos --- .../ApplicationModels/IActionModelConvention.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Microsoft.AspNetCore.Mvc.Core/ApplicationModels/IActionModelConvention.cs b/src/Microsoft.AspNetCore.Mvc.Core/ApplicationModels/IActionModelConvention.cs index d5a49ad53c..80c1426be2 100644 --- a/src/Microsoft.AspNetCore.Mvc.Core/ApplicationModels/IActionModelConvention.cs +++ b/src/Microsoft.AspNetCore.Mvc.Core/ApplicationModels/IActionModelConvention.cs @@ -4,14 +4,14 @@ namespace Microsoft.AspNetCore.Mvc.ApplicationModels { /// - /// Allows customization of the of the . + /// Allows customization of the . /// /// /// To use this interface, create an class which implements the interface and /// place it on an action method. /// /// customizations run after - /// customications and before + /// customizations and before /// customizations. /// public interface IActionModelConvention @@ -22,4 +22,4 @@ namespace Microsoft.AspNetCore.Mvc.ApplicationModels /// The . void Apply(ActionModel action); } -} \ No newline at end of file +}