From 6f7f6719a3bf02449b901f7d1b5fd59f0c7cb3ed Mon Sep 17 00:00:00 2001 From: James Scott-Brown Date: Tue, 7 Feb 2023 17:14:58 +0000 Subject: [PATCH] docs: link to MDN page on void elements --- 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