From 80540843c294da7fce1ad2c0e6f766f733f3d445 Mon Sep 17 00:00:00 2001 From: Jack Goodall Date: Tue, 12 Aug 2025 19:08:08 +0200 Subject: [PATCH] docs formatting --- documentation/docs/03-template-syntax/12-bind.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/03-template-syntax/12-bind.md b/documentation/docs/03-template-syntax/12-bind.md index e75f520b01..1772d5b600 100644 --- a/documentation/docs/03-template-syntax/12-bind.md +++ b/documentation/docs/03-template-syntax/12-bind.md @@ -40,7 +40,7 @@ In the case of readonly bindings like [dimension bindings](#Dimensions), the `ge > [!NOTE] > Function bindings are available in Svelte 5.9.0 and newer. -If you already have a tuple [get, set] or an object with `get` and/or `set` functions, you can use the spread syntax to bind them directly, instead of destructuring them beforehand. +If you already have a `[get, set]` tuple or an object with `get` and/or `set` functions, you can use the spread syntax to bind them directly, instead of destructuring them beforehand. This is especially handy when using helpers that return getter/setter pairs. ```svelte