From 48201abba960decf8959a3b0b13891dc637045d9 Mon Sep 17 00:00:00 2001 From: de-oz <101826623+de-oz@users.noreply.github.com> Date: Thu, 8 Dec 2022 10:42:36 +0300 Subject: [PATCH 1/2] Fix grammar --- src/tutorial/src/step-5/description.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tutorial/src/step-5/description.md b/src/tutorial/src/step-5/description.md index 977418022d..ecba4ba14a 100644 --- a/src/tutorial/src/step-5/description.md +++ b/src/tutorial/src/step-5/description.md @@ -42,6 +42,6 @@ To simplify two-way bindings, Vue provides a directive, `v-model`, which is esse `v-model` automatically syncs the ``'s value with the bound state, so we no longer need to use an event handler for that. -`v-model` works not only on text inputs, but also other input types such as checkboxes, radio buttons, and select dropdowns. We cover more details in Guide - Form Bindings. +`v-model` works on not only text inputs, but also other input types such as checkboxes, radio buttons, and select dropdowns. We cover more details in Guide - Form Bindings. Now, try to refactor the code to use `v-model` instead. From 8232c8216b53060a80301803ae0a39e331b5f511 Mon Sep 17 00:00:00 2001 From: de-oz <101826623+de-oz@users.noreply.github.com> Date: Tue, 10 Jan 2023 12:44:09 +0300 Subject: [PATCH 2/2] Update src/tutorial/src/step-5/description.md Co-authored-by: Natalia Tepluhina --- src/tutorial/src/step-5/description.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tutorial/src/step-5/description.md b/src/tutorial/src/step-5/description.md index ecba4ba14a..549684f584 100644 --- a/src/tutorial/src/step-5/description.md +++ b/src/tutorial/src/step-5/description.md @@ -42,6 +42,6 @@ To simplify two-way bindings, Vue provides a directive, `v-model`, which is esse `v-model` automatically syncs the ``'s value with the bound state, so we no longer need to use an event handler for that. -`v-model` works on not only text inputs, but also other input types such as checkboxes, radio buttons, and select dropdowns. We cover more details in Guide - Form Bindings. +`v-model` works not only on text inputs, but also on other input types such as checkboxes, radio buttons, and select dropdowns. We cover more details in Guide - Form Bindings. Now, try to refactor the code to use `v-model` instead.