From 1dd7d49e891d4da10ec0c6976eb14eb7c7bf7761 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Tue, 24 Feb 2026 21:19:05 -0500 Subject: [PATCH] Update documentation/docs/97-best-practices/10-best-practices.md Co-authored-by: ComputerGuy <63362464+Ocean-OS@users.noreply.github.com> --- documentation/docs/97-best-practices/10-best-practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/97-best-practices/10-best-practices.md b/documentation/docs/97-best-practices/10-best-practices.md index 7bd39bbd02..abc8620f49 100644 --- a/documentation/docs/97-best-practices/10-best-practices.md +++ b/documentation/docs/97-best-practices/10-best-practices.md @@ -76,7 +76,7 @@ When using an each block to iterate over some value, prefer using the item witho ## Snippets -You can think of snippets like functions that render markup when invoked with the `{@render}` tag. You can declare snippets in the template part of a Svelte component and they will be available as a variable in the `script` tag. If they don't contain any state created in the `script` tag they will also be available in the `script module`. +You can think of snippets like functions that render markup when invoked with the `{@render}` tag. You can declare snippets in the template of a Svelte component and they will be available as a variable in the `