From 8a3e64e1648a6fa9239dcf6c8c681b8225a93977 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Tue, 7 Oct 2014 20:46:39 -0700 Subject: [PATCH] fix doc error --- .../ApplicationModel/ActionModel.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Microsoft.AspNet.Mvc.Core/ApplicationModel/ActionModel.cs b/src/Microsoft.AspNet.Mvc.Core/ApplicationModel/ActionModel.cs index 3f1c4062bd..05155389ab 100644 --- a/src/Microsoft.AspNet.Mvc.Core/ApplicationModel/ActionModel.cs +++ b/src/Microsoft.AspNet.Mvc.Core/ApplicationModel/ActionModel.cs @@ -66,15 +66,15 @@ namespace Microsoft.AspNet.Mvc.ApplicationModel public AttributeRouteModel AttributeRouteModel { get; set; } /// - /// If true, objects will be created for this action. If null - /// then the value of will be used. + /// If true, objects will be created for this action. + /// If null then the value of will be used. /// public bool? ApiExplorerIsVisible { get; set; } /// - /// The value for of objects created - /// for actions defined by this controller. If null then the value of - /// will be used. + /// The value for of + /// objects created for actions defined by this controller. + /// If null then the value of will be used. /// public string ApiExplorerGroupName { get; set; } }