diff --git a/site/content/docs/02-template-syntax.md b/site/content/docs/02-template-syntax.md index 06fbfce06c..19d96430b0 100644 --- a/site/content/docs/02-template-syntax.md +++ b/site/content/docs/02-template-syntax.md @@ -1562,7 +1562,7 @@ The `` element provides a place to specify per-component compile ### `` -The `` element allows you to place content in a named [docs](docs#slot_name) without wrapping it in a container. This keeps the flow layout of your document intact. +The `` element allows you to place content in a named [docs](docs#slot_name) without wrapping it in a container DOM element. This keeps the flow layout of your document intact. ```sv diff --git a/site/content/tutorial/16-special-elements/08-svelte-fragment/app-a/App.svelte b/site/content/tutorial/16-special-elements/08-svelte-fragment/app-a/App.svelte index 33a4920872..35f2586857 100644 --- a/site/content/tutorial/16-special-elements/08-svelte-fragment/app-a/App.svelte +++ b/site/content/tutorial/16-special-elements/08-svelte-fragment/app-a/App.svelte @@ -2,7 +2,6 @@ import Box from './Box.svelte' -

All rights reserved.

diff --git a/site/content/tutorial/16-special-elements/08-svelte-fragment/app-b/App.svelte b/site/content/tutorial/16-special-elements/08-svelte-fragment/app-b/App.svelte index 2724752b80..6f55903ece 100644 --- a/site/content/tutorial/16-special-elements/08-svelte-fragment/app-b/App.svelte +++ b/site/content/tutorial/16-special-elements/08-svelte-fragment/app-b/App.svelte @@ -2,7 +2,6 @@ import Box from './Box.svelte' -

All rights reserved.

diff --git a/site/content/tutorial/16-special-elements/08-svelte-fragment/text.md b/site/content/tutorial/16-special-elements/08-svelte-fragment/text.md index 0132f54636..fca7aeb844 100644 --- a/site/content/tutorial/16-special-elements/08-svelte-fragment/text.md +++ b/site/content/tutorial/16-special-elements/08-svelte-fragment/text.md @@ -2,21 +2,14 @@ title: --- -The `` element allows you to add content to a named slot without breaking the document's flow layout. +The `` element allows you to place content in a named slot without wrapping it in a container DOM element. This keeps the flow layout of your document intact. -In the example notice how we applied a flex layout with a gap of 2em to the box. +In the example notice how we applied a flex layout with a gap of `1em` to the box. ```sv