From fc20dde03fb9b9388192e2a61d88f1a2a08fe6fe Mon Sep 17 00:00:00 2001 From: pekspro Date: Sun, 18 Aug 2019 13:24:56 +0200 Subject: [PATCH] Fixes inconsistency in the attribute splatting example (#13883) --- aspnetcore/blazor/components.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/blazor/components.md b/aspnetcore/blazor/components.md index e9a6170b9a..39a62a6687 100644 --- a/aspnetcore/blazor/components.md +++ b/aspnetcore/blazor/components.md @@ -159,7 +159,7 @@ In the following example, the first `` element (`id="useIndividualParams" { { "maxlength", "10" }, { "placeholder", "Input placeholder text" }, - { "required", "true" }, + { "required", "required" }, { "size", "50" } }; } @@ -179,7 +179,7 @@ The rendered `` elements using both approaches is identical: ```