From bc2150d03c5a95d383820341995628b8763c6e27 Mon Sep 17 00:00:00 2001 From: Mateusz Sadowski Date: Mon, 7 Aug 2017 16:00:56 +0200 Subject: [PATCH] Fix a typo in "How validation works" paragraph (#3902) The text said "The follow code...", when I think it was meant to be "The following code..." --- aspnetcore/includes/mvc-intro/validation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/includes/mvc-intro/validation.md b/aspnetcore/includes/mvc-intro/validation.md index 751b4d7925..b720f5b56c 100644 --- a/aspnetcore/includes/mvc-intro/validation.md +++ b/aspnetcore/includes/mvc-intro/validation.md @@ -41,7 +41,7 @@ The form data is not sent to the server until there are no client side validatio ## How validation works -You might wonder how the validation UI was generated without any updates to the code in the controller or views. The follow code shows the two `Create` methods. +You might wonder how the validation UI was generated without any updates to the code in the controller or views. The following code shows the two `Create` methods. [!code-csharp[Main](../../tutorials/first-mvc-app/start-mvc//sample/MvcMovie/Controllers/MoviesController.cs?name=snippetCreate)]