From 9a9858cca118bde31fd646428b9179bef287a210 Mon Sep 17 00:00:00 2001 From: Nikon the Third Date: Thu, 25 Jun 2020 12:03:52 +0200 Subject: [PATCH] Fix typo in chained bind explanation. (#18954) --- aspnetcore/blazor/components/data-binding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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