From acf625d7b7fb214522be3ada79e630f6ee5a475c Mon Sep 17 00:00:00 2001 From: Dave Brock Date: Sun, 30 Dec 2018 17:24:07 -0600 Subject: [PATCH] Typo fix (#10149) --- aspnetcore/data/ef-rp/concurrency.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/data/ef-rp/concurrency.md b/aspnetcore/data/ef-rp/concurrency.md index e04f5dbe7c..8af766be5c 100644 --- a/aspnetcore/data/ef-rp/concurrency.md +++ b/aspnetcore/data/ef-rp/concurrency.md @@ -196,7 +196,7 @@ The following code gets the client values (the values posted to this method) and [!code-csharp[](intro/samples/cu/Pages/Departments/Edit.cshtml.cs?name=snippet_try&highlight=9,18)] -The follwing code adds a custom error message for each column that has DB values different from what was posted to `OnPostAsync`: +The following code adds a custom error message for each column that has DB values different from what was posted to `OnPostAsync`: [!code-csharp[](intro/samples/cu/Pages/Departments/Edit.cshtml.cs?name=snippet_err)]