From a8cbc6a82dbdbd8c4a32a7f6593119ef4bf8e6b5 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Wed, 22 Nov 2017 17:09:08 -1000 Subject: [PATCH] Update tutorial-your-first-web-api.md --- .../tutorial-your-first-web-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api.md b/aspnet/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api.md index c096690428..6c42d5d698 100644 --- a/aspnet/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api.md +++ b/aspnet/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api.md @@ -18,7 +18,7 @@ by [Mike Wasson](https://github.com/MikeWasson) [Download Completed Project](https://code.msdn.microsoft.com/Sample-code-of-Getting-c56ccb28) -HTTP is not just for serving up web pages. It is also a powerful platform for building APIs that expose services and data. HTTP is simple, flexible, and ubiquitous. Almost any platform that you can think of has an HTTP library, so HTTP services can reach a broad range of clients, including browsers, mobile devices, and traditional desktop applications. +HTTP is not just for serving up web pages. HTTP is also a powerful platform for building APIs that expose services and data. HTTP is simple, flexible, and ubiquitous. Almost any platform that you can think of has an HTTP library, so HTTP services can reach a broad range of clients, including browsers, mobile devices, and traditional desktop applications. ASP.NET Web API is a framework for building web APIs on top of the .NET Framework. In this tutorial, you will use ASP.NET Web API to create a web API that returns a list of products.