From 7d25b8bbf653153bfd05e3a745d451b4b2bc5217 Mon Sep 17 00:00:00 2001 From: Mark Harwood <47503138+markharwood101@users.noreply.github.com> Date: Wed, 13 Mar 2024 11:26:54 +0000 Subject: [PATCH] Grammar correction index.md (#32044) --- aspnetcore/blazor/forms/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/blazor/forms/index.md b/aspnetcore/blazor/forms/index.md index 8e42cb9ea3..478209c321 100644 --- a/aspnetcore/blazor/forms/index.md +++ b/aspnetcore/blazor/forms/index.md @@ -88,7 +88,7 @@ A form is defined using the Blazor framework's component is rendered where the `` element appears. -* The model is created in the component's `@code` block and held in a public property (`Model`). The property is assigned to is assigned to the parameter. The `[SupplyParameterFromForm]` attribute indicates that the value of the associated property should be supplied from the form data. Data in the request that matches the property's name is bound to the property. +* The model is created in the component's `@code` block and held in a public property (`Model`). The property is assigned to the parameter. The `[SupplyParameterFromForm]` attribute indicates that the value of the associated property should be supplied from the form data. Data in the request that matches the property's name is bound to the property. * The component is an [input component](xref:blazor/forms/input-components) for editing string values. The `@bind-Value` directive attribute binds the `Model.Id` model property to the component's property. * The `Submit` method is registered as a handler for the callback. The handler is called when the form is submitted by the user.