diff --git a/aspnetcore/blazor/components/data-binding.md b/aspnetcore/blazor/components/data-binding.md index 01c92aa0d2..6f473ad43c 100644 --- a/aspnetcore/blazor/components/data-binding.md +++ b/aspnetcore/blazor/components/data-binding.md @@ -233,7 +233,7 @@ The following `PasswordField` component (`PasswordField.razor`): * Sets an `` element's value to a `Password` property. * Exposes changes of the `Password` property to a parent component with an [`EventCallback`](xref:blazor/components/event-handling#eventcallback). -* Uses the `onclick` event is used to trigger the `ToggleShowPassword` method. For more information, see . +* Uses the `onclick` event to trigger the `ToggleShowPassword` method. For more information, see . ```razor

Child Component