From 6044cb3e4aec2695744d86e1f5869e5582b5d02c Mon Sep 17 00:00:00 2001 From: Michael Harmsen Date: Fri, 4 Nov 2022 12:24:58 +0100 Subject: [PATCH] Update README.md Added the missing word "making". --- 3-razor-pages/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3-razor-pages/README.md b/3-razor-pages/README.md index 78838b0..db9401d 100644 --- a/3-razor-pages/README.md +++ b/3-razor-pages/README.md @@ -96,7 +96,7 @@ You will receive a warning that you are overriding the existing **Index** files. Let's take a look at how a sample page in the site works - we'll start with the Index page. As explained earlier, the logic in a Razor Page goes in a Page Model class, and you’ll write your markup in a Razor file. We'll look at how those work, starting with the Index `PageModel`. -A Razor page's `PageModel` class file defines any page handlers for HTTP requests sent to the page, and data used to render the page. The `PageModel` keeps those concerns separate from the Razor page, your app more modular, and easier to maintain. By convention, the `PageModel` class is named *[PageName]Model* and resides in the same namespace as the Razor page. +A Razor page's `PageModel` class file defines any page handlers for HTTP requests sent to the page, and data used to render the page. The `PageModel` keeps those concerns separate from the Razor page, making your app more modular, and easier to maintain. By convention, the `PageModel` class is named *[PageName]Model* and resides in the same namespace as the Razor page. ```csharp using System; @@ -245,4 +245,4 @@ We're excited to support you on your learning journey! Check out the [.NET Commu # How'd it go? -Please take this quick, [10 question survey](https://aka.ms/WebLearningSeries-git-survey) to give us your thoughts on this lesson & challenge! \ No newline at end of file +Please take this quick, [10 question survey](https://aka.ms/WebLearningSeries-git-survey) to give us your thoughts on this lesson & challenge!