From 75a7497ba882e86c16010fd80ed12a1a0ee1ccce Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Tue, 12 Apr 2022 10:23:22 -0700 Subject: [PATCH] Update site/content/tutorial/13-advanced-styling/04-style-directive/text.md --- .../tutorial/13-advanced-styling/04-style-directive/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/tutorial/13-advanced-styling/04-style-directive/text.md b/site/content/tutorial/13-advanced-styling/04-style-directive/text.md index be1f6129db..88b4e05885 100644 --- a/site/content/tutorial/13-advanced-styling/04-style-directive/text.md +++ b/site/content/tutorial/13-advanced-styling/04-style-directive/text.md @@ -2,7 +2,7 @@ title: The style directive --- -Being able to set css properties dynamically is nice, however this can get unwieldly if you have to write a long string, and mistakes like missing any of the semicolons could make the whole string invalid. Therefore, Svelte provides a nicer way to write inline styles with the style directive. +Being able to set CSS properties dynamically is nice. However, this can get unwieldy if you have to write a long string. Mistakes like missing any of the semicolons could make the whole string invalid. Therefore, Svelte provides a nicer way to write inline styles with the style directive. Change the style attribute of the paragraph to the following: