From c3944060182d3becf4d89350bede7dcf796b500d Mon Sep 17 00:00:00 2001 From: Zokalyx <36007346+Zokalyx@users.noreply.github.com> Date: Tue, 20 Dec 2022 19:52:26 -0300 Subject: [PATCH] Remove unnecessary and inconsistent quotation marks Reasons - Quotation marks not necessary for code to compile - The solution code does not use those quotation marks - Creating strings inside of the quotation marks is uncomfortable --- .../tutorial/01-svelte/08-stores/06-store-bindings/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/01-svelte/08-stores/06-store-bindings/README.md b/content/tutorial/01-svelte/08-stores/06-store-bindings/README.md index ddd23f215..05691b05d 100644 --- a/content/tutorial/01-svelte/08-stores/06-store-bindings/README.md +++ b/content/tutorial/01-svelte/08-stores/06-store-bindings/README.md @@ -15,7 +15,7 @@ Changing the input value will now update `name` and all its dependents. We can also assign directly to store values inside a component. Add a ` ```