From 24daf1f195f0704be12f7f0cf5d29c76af0f1702 Mon Sep 17 00:00:00 2001 From: acolote1998 Date: Wed, 26 Nov 2025 11:13:25 +0100 Subject: [PATCH] docs: clarify explanation in Numeric inputs section --- .../tutorial/01-svelte/06-bindings/01-text-inputs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/svelte.dev/content/tutorial/01-svelte/06-bindings/01-text-inputs/index.md b/apps/svelte.dev/content/tutorial/01-svelte/06-bindings/01-text-inputs/index.md index bc195e1ab8..f2add457b3 100644 --- a/apps/svelte.dev/content/tutorial/01-svelte/06-bindings/01-text-inputs/index.md +++ b/apps/svelte.dev/content/tutorial/01-svelte/06-bindings/01-text-inputs/index.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 changes to the value of `name` update the input, and changes to the input update `name`.