diff --git a/samples/MvcSample.Web/project.json b/samples/MvcSample.Web/project.json index 1071fb93ee..a2c73e813f 100644 --- a/samples/MvcSample.Web/project.json +++ b/samples/MvcSample.Web/project.json @@ -8,7 +8,7 @@ "Microsoft.AspNet.Mvc.WebApiCompatShim": "6.0.0-*", "Microsoft.AspNet.Server.IIS": "1.0.0-*", "Microsoft.AspNet.Server.WebListener": "1.0.0-*", - "Microsoft.AspNet.StaticFiles": "1.0.0-*", + "Microsoft.AspNet.StaticFiles": "1.0.0-*" }, "commands": { "web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5001", diff --git a/src/Microsoft.AspNet.Mvc.Core/ActionConstraints/IActionConstraint.cs b/src/Microsoft.AspNet.Mvc.Core/ActionConstraints/IActionConstraint.cs index 3fa0638ed6..c3a2eea903 100644 --- a/src/Microsoft.AspNet.Mvc.Core/ActionConstraints/IActionConstraint.cs +++ b/src/Microsoft.AspNet.Mvc.Core/ActionConstraints/IActionConstraint.cs @@ -27,7 +27,7 @@ namespace Microsoft.AspNet.Mvc /// are candidates for selection, the next stage to run is the lowest value of for any /// constraint of any candidate which is greater than the order of the last stage. /// - /// Once the stage order is identified, each action has all of it's constraints in that stage executed. + /// Once the stage order is identified, each action has all of its constraints in that stage executed. /// If any constraint does not match, then that action is not a candidate for selection. If any actions /// with constraints in the current state are still candidates, then those are the 'best' actions and this /// process will repeat with the next stage on the set of 'best' actions. If after processing the diff --git a/src/Microsoft.AspNet.Mvc.Core/ActionResults/ViewResult.cs b/src/Microsoft.AspNet.Mvc.Core/ActionResults/ViewResult.cs index f4e951f12e..45454630f8 100644 --- a/src/Microsoft.AspNet.Mvc.Core/ActionResults/ViewResult.cs +++ b/src/Microsoft.AspNet.Mvc.Core/ActionResults/ViewResult.cs @@ -14,7 +14,7 @@ namespace Microsoft.AspNet.Mvc public class ViewResult : ActionResult { /// - /// /// Gets or sets the name of the view to render. + /// Gets or sets the name of the view to render. /// /// /// When null, defaults to . diff --git a/src/Microsoft.AspNet.Mvc.Razor/IViewLocationExpander.cs b/src/Microsoft.AspNet.Mvc.Razor/IViewLocationExpander.cs index 8fa598326d..73c089dd35 100644 --- a/src/Microsoft.AspNet.Mvc.Razor/IViewLocationExpander.cs +++ b/src/Microsoft.AspNet.Mvc.Razor/IViewLocationExpander.cs @@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Mvc.Razor /// /// The for the current view location /// expansion operation. - /// The sequence of view locations to expand. + /// The sequence of view locations to expand. /// A list of expanded view locations. IEnumerable ExpandViewLocations(ViewLocationExpanderContext context, IEnumerable viewLocations);