From a5fb83635d0bbf133b1fbdebf5a49ac52877a43f Mon Sep 17 00:00:00 2001 From: Hans van Bakel Date: Wed, 31 Oct 2018 07:59:44 -0700 Subject: [PATCH] Update OkResult.cs --- src/System.Web.Http/Results/OkResult.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/System.Web.Http/Results/OkResult.cs b/src/System.Web.Http/Results/OkResult.cs index af63b2de4..e99d68c15 100644 --- a/src/System.Web.Http/Results/OkResult.cs +++ b/src/System.Web.Http/Results/OkResult.cs @@ -14,14 +14,14 @@ public class OkResult : IHttpActionResult { private readonly StatusCodeResult.IDependencyProvider _dependencies; - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// The request message which led to this result. public OkResult(HttpRequestMessage request) : this(new StatusCodeResult.DirectDependencyProvider(request)) { } - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// The controller from which to obtain the dependencies needed for execution. public OkResult(ApiController controller) : this(new StatusCodeResult.ApiControllerDependencyProvider(controller))