diff --git a/aspnetcore/blazor/forms-validation.md b/aspnetcore/blazor/forms-validation.md index 2b747035cb..255375d171 100644 --- a/aspnetcore/blazor/forms-validation.md +++ b/aspnetcore/blazor/forms-validation.md @@ -54,7 +54,7 @@ In the preceding example: * The form validates user input in the `name` field using the validation defined in the `ExampleModel` type. The model is created in the component's `@code` block and held in a private field (`exampleModel`). The field is assigned to the `Model` attribute of the `` element. * The `InputText` component's `@bind-Value` binds: - * The model property (`exampleModel.Name`) to the `InputText` component's `Value` property. + * The model property (`exampleModel.Name`) to the `InputText` component's `Value` property. For more information on property binding, see . * A change event delegate to the `InputText` component's `ValueChanged` property. * The `DataAnnotationsValidator` component attaches validation support using data annotations. * The `ValidationSummary` component summarizes validation messages.