From e3ae7c30686fe89d7c8df8ece6a6e3601d049bf8 Mon Sep 17 00:00:00 2001 From: Adam Alexander <50453312+a-alexander@users.noreply.github.com> Date: Wed, 8 Jun 2022 12:51:33 +0100 Subject: [PATCH] Update 02-template-syntax.md Tiny typo. --- site/content/docs/02-template-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/02-template-syntax.md b/site/content/docs/02-template-syntax.md index ac49fb23c5..f2e71ecbe0 100644 --- a/site/content/docs/02-template-syntax.md +++ b/site/content/docs/02-template-syntax.md @@ -1666,7 +1666,7 @@ If `this` is the name of a void tag (e.g., `br`) and `` has chil The `` element allows you to add event listeners to the `window` object without worrying about removing them when the component is destroyed, or checking for the existence of `window` when server-side rendering. -Unlike ``, this element may only appear the top level of your component and must never be inside a block or element. +Unlike ``, this element may only appear at the top level of your component and must never be inside a block or element. ```sv