From 282d62baae47a01758ddfa94cee458f81183af56 Mon Sep 17 00:00:00 2001 From: Dathan Date: Sun, 10 Mar 2024 16:54:52 -0400 Subject: [PATCH] Fix typo and grammar in 01-svelte-components.md (#10737) --- .../docs/02-template-syntax/01-svelte-components.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/docs/02-template-syntax/01-svelte-components.md b/documentation/docs/02-template-syntax/01-svelte-components.md index 7d4abb7b6a..e79489144b 100644 --- a/documentation/docs/02-template-syntax/01-svelte-components.md +++ b/documentation/docs/02-template-syntax/01-svelte-components.md @@ -321,7 +321,7 @@ To apply styles to a selector globally, use the `:global(...)` modifier. If you want to make @keyframes that are accessible globally, you need to prepend your keyframe names with `-global-`. -The `-global-` part will be removed when compiled, and the keyframe then be referenced using just `my-animation-name` elsewhere in your code. +The `-global-` part will be removed when compiled, and the keyframe will then be referenced using just `my-animation-name` elsewhere in your code. ```svelte