From 12c15014e895f34485d3a130a8e21cfa1e72c616 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 9c352703f1ba..2174ec578fd0 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} ```