From d37619680e6b832d2cd4e8341ddf391ce1ddc9e6 Mon Sep 17 00:00:00 2001 From: Lol Mettam Date: Thu, 29 May 2025 12:16:43 +0100 Subject: [PATCH] Update 04-svelte-body.md Add missing 'at' in sentence three of description. --- documentation/docs/05-special-elements/04-svelte-body.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/05-special-elements/04-svelte-body.md b/documentation/docs/05-special-elements/04-svelte-body.md index d6536b0b74..c6828b98f7 100644 --- a/documentation/docs/05-special-elements/04-svelte-body.md +++ b/documentation/docs/05-special-elements/04-svelte-body.md @@ -8,7 +8,7 @@ title: Similarly to ``, this element allows you to add listeners to events on `document.body`, such as `mouseenter` and `mouseleave`, which don't fire on `window`. It also lets you use [actions](use) on the `` element. -As with `` and ``, this element may only appear the top level of your component and must never be inside a block or element. +As with `` and ``, this element may only appear at the top level of your component and must never be inside a block or element. ```svelte