Update razor.md

pull/3549/head
Rick Anderson 2017-06-21 14:12:40 -07:00 committed by GitHub
parent 02aa606eb6
commit 3016c23949
1 changed files with 1 additions and 1 deletions

View File

@ -437,7 +437,7 @@ For example, if you create an ASP.NET Core MVC app with individual user accounts
@model LoginViewModel
```
In the class example in , the class generated inherits from `RazorPage<dynamic>`. By adding an `@model` you control whats inherited. For example
In the preceding class example, the class generated inherits from `RazorPage<dynamic>`. By adding an `@model` you control whats inherited. For example
```csharp
@model LoginViewModel