From 7706a5f7138ef07bfc67a8366f910427994a087f Mon Sep 17 00:00:00 2001 From: James Scott-Brown Date: Tue, 14 Feb 2023 16:18:06 +0000 Subject: [PATCH] docs: link to MDN page on void elements (#8261) --- site/content/docs/03-template-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/03-template-syntax.md b/site/content/docs/03-template-syntax.md index e08cc6216f..6ab05cbb29 100644 --- a/site/content/docs/03-template-syntax.md +++ b/site/content/docs/03-template-syntax.md @@ -1670,7 +1670,7 @@ The only supported binding is `bind:this`, since the element type specific bindi If `this` has a nullish value, the element and its children will not be rendered. -If `this` is the name of a void tag (e.g., `br`) and `` has child elements, a runtime error will be thrown in development mode. +If `this` is the name of a [void element](https://developer.mozilla.org/en-US/docs/Glossary/Void_element) (e.g., `br`) and `` has child elements, a runtime error will be thrown in development mode. ```sv