From f969628394fccc71e18c2c4538d54011e4a2de4a Mon Sep 17 00:00:00 2001 From: Lol Mettam Date: Thu, 29 May 2025 13:05:34 +0100 Subject: [PATCH] Update 04-svelte-body.md (#16027) 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