From 48e487c3687724996c4e70457f7433ee1a8a9370 Mon Sep 17 00:00:00 2001 From: JAOUAD OUCHAIB <76879201+jouchaib2020@users.noreply.github.com> Date: Tue, 26 Mar 2024 22:22:19 +0100 Subject: [PATCH] Update a typo README.md --- content/tutorial/01-svelte/06-bindings/01-text-inputs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/01-svelte/06-bindings/01-text-inputs/README.md b/content/tutorial/01-svelte/06-bindings/01-text-inputs/README.md index c3a37ccdd..89278f3e8 100644 --- a/content/tutorial/01-svelte/06-bindings/01-text-inputs/README.md +++ b/content/tutorial/01-svelte/06-bindings/01-text-inputs/README.md @@ -13,4 +13,4 @@ Instead, we can use the `bind:value` directive: ``` -This means that not only will changes to the value of `name` update the input value, but changes to the input value will update `name`. +This means that a change to the value of `name` will be reflected in the input field, and conversely, a change made in the input field will update the value of `name`.