From c470d00489ed71d9fef93ec1a132c58d55c0a6e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Fern=C3=A1ndez-Victorio?= Date: Sat, 31 Aug 2019 13:09:12 +0100 Subject: [PATCH] Fix small typo The name of the prop is current, not value. With value, fails --- site/content/tutorial/04-logic/05-keyed-each-blocks/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/tutorial/04-logic/05-keyed-each-blocks/text.md b/site/content/tutorial/04-logic/05-keyed-each-blocks/text.md index 3c204d1413..3e45abfe3a 100644 --- a/site/content/tutorial/04-logic/05-keyed-each-blocks/text.md +++ b/site/content/tutorial/04-logic/05-keyed-each-blocks/text.md @@ -10,7 +10,7 @@ To do that, we specify a unique identifier for the `each` block: ```html {#each things as thing (thing.id)} - + {/each} ```