From 64cfb65411dc7caf1525abaff2f8fde5d08f2863 Mon Sep 17 00:00:00 2001 From: Sourabh Shirhatti Date: Mon, 7 Dec 2015 18:29:25 -0800 Subject: [PATCH] Typo in word developers --- mvc/getting-started/first-mvc-app/start-mvc.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvc/getting-started/first-mvc-app/start-mvc.rst b/mvc/getting-started/first-mvc-app/start-mvc.rst index 8b6151efa9..6e90daae52 100644 --- a/mvc/getting-started/first-mvc-app/start-mvc.rst +++ b/mvc/getting-started/first-mvc-app/start-mvc.rst @@ -48,7 +48,7 @@ Tap **F5** to run the app in debug mode or **Ctl-F5** in non-debug mode. .. image:: start-mvc/_static/1.png - Visual Studio starts `IIS Express `__ and runs your app. Notice that the address bar shows ``localhost:port#`` and not something like ``example.com``. That's because ``localhost`` always points to your own local computer, which in this case is running the app you just created. When Visual Studio creates a web project, a random port is used for the web server. In the image above, the port number is 1234. When you run the app, you'll see a different port number. -- Launching the app with **Ctl-F5** (non-debug mode) allows you to make code changes, save the file, refresh the browser, and see the code changes. Many delelopers prefer to use non-debug mode to quickly launch the app and view changes. +- Launching the app with **Ctl-F5** (non-debug mode) allows you to make code changes, save the file, refresh the browser, and see the code changes. Many developers prefer to use non-debug mode to quickly launch the app and view changes. - You can launch the app in debug or non-debug mode from the **Debug** menu item: .. image:: start-mvc/_static/debug_menu.png