From e6585933ba00fd3109e7f1870c9382c4cde2def8 Mon Sep 17 00:00:00 2001 From: Kirankumar Ambati Date: Tue, 25 Feb 2020 01:23:22 +0530 Subject: [PATCH] Update site/content/tutorial/01-introduction/03-dynamic-attributes/text.md Co-Authored-By: John Muhl --- .../tutorial/01-introduction/03-dynamic-attributes/text.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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. ``` -