From 10320502d33c93d4bf3722b227923cccad44a826 Mon Sep 17 00:00:00 2001
From: thanosolo <156826133+thanosolo@users.noreply.github.com>
Date: Wed, 7 Feb 2024 17:27:56 +0200
Subject: [PATCH] Fix: typo of step 2
Changed "are considered" to "is considered".
---
src/tutorial/src/step-2/description.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tutorial/src/step-2/description.md b/src/tutorial/src/step-2/description.md
index 4c2a9a79a7..98e29f28ab 100644
--- a/src/tutorial/src/step-2/description.md
+++ b/src/tutorial/src/step-2/description.md
@@ -10,7 +10,7 @@ The core feature of Vue is **declarative rendering**: using a template syntax th
-State that can trigger updates when changed are considered **reactive**. We can declare reactive state using Vue's `reactive()` API. Objects created from `reactive()` are JavaScript [Proxies](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy) that work just like normal objects:
+State that can trigger updates when changed is considered **reactive**. We can declare reactive state using Vue's `reactive()` API. Objects created from `reactive()` are JavaScript [Proxies](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy) that work just like normal objects:
```js
import { reactive } from 'vue'