From 18bbf90dfc8fb132cf15fe817cf1e9de2d96ebb1 Mon Sep 17 00:00:00 2001 From: craigglennie Date: Wed, 17 Jul 2019 19:21:58 +1200 Subject: [PATCH] Don't use shorthand binding in textarea example The example uses a variable called `value` and a shorthand binding notation ` ``` This commit uses a variable named `text`, rather than `value`, and avoids the shorthand binding form. --- .../examples/05-bindings/04-textarea-inputs/App.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/content/examples/05-bindings/04-textarea-inputs/App.svelte b/site/content/examples/05-bindings/04-textarea-inputs/App.svelte index be338bf47f..432ea59d50 100644 --- a/site/content/examples/05-bindings/04-textarea-inputs/App.svelte +++ b/site/content/examples/05-bindings/04-textarea-inputs/App.svelte @@ -1,12 +1,12 @@ - + -{@html marked(value)} \ No newline at end of file +{@html marked(value)}