From f7982106fe962fc47d58af08cf722f99b238ae99 Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Sun, 27 Nov 2016 18:08:44 -0800 Subject: [PATCH] Updated code link to include closing brace. --- aspnetcore/tutorials/first-mvc-app/search.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-mvc-app/search.md b/aspnetcore/tutorials/first-mvc-app/search.md index a6ba9d2090..fabe6edeba 100644 --- a/aspnetcore/tutorials/first-mvc-app/search.md +++ b/aspnetcore/tutorials/first-mvc-app/search.md @@ -93,7 +93,7 @@ There's no `[HttpPost]` overload of the `Index` method as you might expect. You You could add the following `[HttpPost] Index` method. -[!code-csharp[Main](./start-mvc/sample2/src/MvcMovie/Controllers/MoviesController.cs?highlight=1&range=294-298)] +[!code-csharp[Main](./start-mvc/sample2/src/MvcMovie/Controllers/MoviesController.cs?highlight=1&range=294-299)] The `notUsed` parameter is used to create an overload for the `Index` method. We'll talk about that later in the tutorial.