From 3eb0b09fe1ecd9dffd4e1f30b515809d1c6a32a8 Mon Sep 17 00:00:00 2001 From: mahdishahbazi Date: Thu, 13 Jul 2017 00:56:41 +1000 Subject: [PATCH] Update action-results.md (#3701) --- .../getting-started-with-aspnet-web-api/action-results.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet/web-api/overview/getting-started-with-aspnet-web-api/action-results.md b/aspnet/web-api/overview/getting-started-with-aspnet-web-api/action-results.md index cc71afe9b9..f0024a48d3 100644 --- a/aspnet/web-api/overview/getting-started-with-aspnet-web-api/action-results.md +++ b/aspnet/web-api/overview/getting-started-with-aspnet-web-api/action-results.md @@ -69,7 +69,7 @@ Web API uses the Accept header in the request to choose the formatter. For more ## IHttpActionResult -The **IHttpActionResult** interface was introducted in Web API 2. Essentially, it defines an **HttpResponseMessage** factory. Here are some advantages of using the **IHttpActionResult** interface: +The **IHttpActionResult** interface was introduced in Web API 2. Essentially, it defines an **HttpResponseMessage** factory. Here are some advantages of using the **IHttpActionResult** interface: - Simplifies [unit testing](../testing-and-debugging/unit-testing-controllers-in-web-api.md) your controllers. - Moves common logic for creating HTTP responses into separate classes.