From 37c80cf25f838497f8e360a214ea8f43040adfff Mon Sep 17 00:00:00 2001 From: Nick Cummings Date: Fri, 25 Feb 2022 00:16:13 -0800 Subject: [PATCH] [docs] Add missing parent element to code example. (#7309) The div is part of the code, but not part of the code snippet of the text --- .../06-bindings/09-each-block-bindings/text.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/site/content/tutorial/06-bindings/09-each-block-bindings/text.md b/site/content/tutorial/06-bindings/09-each-block-bindings/text.md index 9c352703f1b..2174ec578fd 100644 --- a/site/content/tutorial/06-bindings/09-each-block-bindings/text.md +++ b/site/content/tutorial/06-bindings/09-each-block-bindings/text.md @@ -6,15 +6,17 @@ You can even bind to properties inside an `each` block. ```html {#each todos as todo} - +
+ - + +
{/each} ```