Skip to content

Commit 9c86f72

Browse files
hvanbakeldougbu
authored andcommitted
Update OkResult.cs
1 parent 523f3aa commit 9c86f72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/System.Web.Http/Results/OkResult.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ public class OkResult : IHttpActionResult
1414
{
1515
private readonly StatusCodeResult.IDependencyProvider _dependencies;
1616

17-
/// <summary>Initializes a new instance of the <see cref="NotFoundResult"/> class.</summary>
17+
/// <summary>Initializes a new instance of the <see cref="OkResult"/> class.</summary>
1818
/// <param name="request">The request message which led to this result.</param>
1919
public OkResult(HttpRequestMessage request)
2020
: this(new StatusCodeResult.DirectDependencyProvider(request))
2121
{
2222
}
2323

24-
/// <summary>Initializes a new instance of the <see cref="NotFoundResult"/> class.</summary>
24+
/// <summary>Initializes a new instance of the <see cref="OkResult"/> class.</summary>
2525
/// <param name="controller">The controller from which to obtain the dependencies needed for execution.</param>
2626
public OkResult(ApiController controller)
2727
: this(new StatusCodeResult.ApiControllerDependencyProvider(controller))

0 commit comments

Comments
 (0)