fixing a minor typo "aboout" instead of about (#3842)

pull/3846/head
Juan Mejia 2017-07-28 06:41:49 -07:00 committed by Scott Addie
parent dd619e81da
commit 7497595797
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ This route is defined in the WebApiConfig.cs file, which is placed in the App\_S
![](routing-in-aspnet-web-api/_static/image1.png) ![](routing-in-aspnet-web-api/_static/image1.png)
For more information aboout the **WebApiConfig** class, see [Configuring ASP.NET Web API](../advanced/configuring-aspnet-web-api.md). For more information about the **WebApiConfig** class, see [Configuring ASP.NET Web API](../advanced/configuring-aspnet-web-api.md).
If you self-host Web API, you must set the routing table directly on the **HttpSelfHostConfiguration** object. For more information, see [Self-Host a Web API](../older-versions/self-host-a-web-api.md). If you self-host Web API, you must set the routing table directly on the **HttpSelfHostConfiguration** object. For more information, see [Self-Host a Web API](../older-versions/self-host-a-web-api.md).
@ -118,4 +118,4 @@ To prevent a method from getting invoked as an action, use the **NonAction** att
## Further Reading ## Further Reading
This topic provided a high-level view of routing. For more detail, see [Routing and Action Selection](routing-and-action-selection.md), which describes exactly how the framework matches a URI to a route, selects a controller, and then selects the action to invoke. This topic provided a high-level view of routing. For more detail, see [Routing and Action Selection](routing-and-action-selection.md), which describes exactly how the framework matches a URI to a route, selects a controller, and then selects the action to invoke.