From 17179fb3262943bd204ab9632edb29850dd574be Mon Sep 17 00:00:00 2001 From: zodiake <4392396+zodiake@users.noreply.github.com> Date: Wed, 21 Feb 2024 11:04:41 +0800 Subject: [PATCH] Update index.md should be `@attributes`? --- .../pages/components/code-generated-html-attributes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blazor-university-com/input/pages/components/code-generated-html-attributes/index.md b/source/blazor-university-com/input/pages/components/code-generated-html-attributes/index.md index 9af3989..1bf93b4 100644 --- a/source/blazor-university-com/input/pages/components/code-generated-html-attributes/index.md +++ b/source/blazor-university-com/input/pages/components/code-generated-html-attributes/index.md @@ -60,7 +60,7 @@ Razor will only execute C# code in the following places: 3. Within the `@code` section. The technique we need to employ to generate one or more attributes + values for a HTML element is called "Attribute splatting". -Attribute splatting involves assigning a `Dictionary` to an attribute with the special name `@attribute`. +Attribute splatting involves assigning a `Dictionary` to an attribute with the special name `@attributes`. ```razor