diff --git a/site/content/tutorial/01-introduction/03-dynamic-attributes/text.md b/site/content/tutorial/01-introduction/03-dynamic-attributes/text.md index 506f840c8c..24e51a1b78 100644 --- a/site/content/tutorial/01-introduction/03-dynamic-attributes/text.md +++ b/site/content/tutorial/01-introduction/03-dynamic-attributes/text.md @@ -27,9 +27,8 @@ We can use curly braces *inside* attributes. Try changing it to `"{name} dances. ## Shorthand attributes -It's common to have an attribute where the name and value are the same, like `src={src}`. Svelte gives us a convenient shorthand for these cases: +In case the attribute name and value are the same (like `src={src}`) Svelte provides a convenient shorthand: ```html A man dances. ``` -