From bc9f677fb3c8e9ae7bbbf6bd3580155a123d973f Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Fri, 15 May 2020 20:28:26 -0500 Subject: [PATCH] Cross-link property binding in Blazor forms topic (#18338) --- aspnetcore/blazor/forms-validation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.