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`.