From 936343c5ff5f5948c8ed6278eb4d2ee94e62ac6d Mon Sep 17 00:00:00 2001 From: Luke Latham Date: Sun, 11 Dec 2016 17:53:43 -0600 Subject: [PATCH 1/2] Update start-mvc.md --- aspnetcore/tutorials/first-mvc-app/start-mvc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-mvc-app/start-mvc.md b/aspnetcore/tutorials/first-mvc-app/start-mvc.md index 2640e2019d..06b4304dff 100644 --- a/aspnetcore/tutorials/first-mvc-app/start-mvc.md +++ b/aspnetcore/tutorials/first-mvc-app/start-mvc.md @@ -56,7 +56,7 @@ Complete the **New ASP.NET Core Web Application - MvcMovie** dialog: Visual Studio used a default template for the MVC project you just created, so you have a working app right now by entering a project name and selecting a few options. This is a simple "Hello World!" project, and it's a good place to start, -Tap **F5** to run the app in debug mode or **Ctl-F5** in non-debug mode. +Tap **F5** to run the app in debug mode or **Ctrl-F5** in non-debug mode. ![running app](start-mvc/_static/1.png) From bf56c00a951db7fdeecb5462a40f5387db8fa511 Mon Sep 17 00:00:00 2001 From: Luke Latham Date: Sun, 11 Dec 2016 17:54:19 -0600 Subject: [PATCH 2/2] Update adding-controller.md --- aspnetcore/tutorials/first-mvc-app/adding-controller.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-mvc-app/adding-controller.md b/aspnetcore/tutorials/first-mvc-app/adding-controller.md index 60de51163e..4abfa44038 100644 --- a/aspnetcore/tutorials/first-mvc-app/adding-controller.md +++ b/aspnetcore/tutorials/first-mvc-app/adding-controller.md @@ -71,7 +71,7 @@ Let's modify the example slightly so that you can pass some parameter informatio > The code above uses `HtmlEncoder.Default.Encode` to protect the app from malicious input (namely JavaScript). It also uses [Interpolated Strings](https://msdn.microsoft.com/en-us/library/dn961160.aspx). > [!NOTE] -> In Visual Studio 2015, when you are running in IIS Express without debugging (Ctl+F5), you don't need to build the app after changing the code. Just save the file, refresh your browser and you can see the changes. +> In Visual Studio 2015, when you are running in IIS Express without debugging (Ctrl+F5), you don't need to build the app after changing the code. Just save the file, refresh your browser and you can see the changes. Run your app and browse to: