From 531bf37446fae17e60d14370321880849a764ec9 Mon Sep 17 00:00:00 2001 From: Chris <845152+LWChris@users.noreply.github.com> Date: Thu, 12 Oct 2023 08:47:14 +0200 Subject: [PATCH] docs: update README.md (#516) Adjust source code snippet according to modifications from previous step. --- .../01-svelte/01-introduction/03-dynamic-attributes/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/01-svelte/01-introduction/03-dynamic-attributes/README.md b/content/tutorial/01-svelte/01-introduction/03-dynamic-attributes/README.md index e03524b1a..6c325239f 100644 --- a/content/tutorial/01-svelte/01-introduction/03-dynamic-attributes/README.md +++ b/content/tutorial/01-svelte/01-introduction/03-dynamic-attributes/README.md @@ -32,5 +32,5 @@ It's not uncommon to have an attribute where the name and value are the same, li ```svelte /// file: App.svelte -A man dances. +{name} dances. ```