From 0d5d9ab76080ecc61c0f9eec6670e5ac29f4d078 Mon Sep 17 00:00:00 2001 From: adiGuba Date: Mon, 17 Feb 2025 22:12:59 +0100 Subject: [PATCH] docs: fix two element_invalid_self_closing_tag warning in example (#15324) * code is incorrect (warning element_invalid_self_closing_tag) * close canvas --- documentation/docs/03-template-syntax/11-bind.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/docs/03-template-syntax/11-bind.md b/documentation/docs/03-template-syntax/11-bind.md index 119f87ed8e..c23f3b5232 100644 --- a/documentation/docs/03-template-syntax/11-bind.md +++ b/documentation/docs/03-template-syntax/11-bind.md @@ -267,7 +267,7 @@ Elements with the `contenteditable` attribute support the following bindings: ```svelte -
+
``` ## Dimensions @@ -307,7 +307,7 @@ To get a reference to a DOM node, use `bind:this`. The value will be `undefined` }); - + ``` Components also support `bind:this`, allowing you to interact with component instances programmatically.