Skip to content

Commit

Permalink
docs: fix grammar typo of step 2 (#2689)
Browse files Browse the repository at this point in the history
Changed "are considered" to "is considered".
  • Loading branch information
thanosolo committed Feb 13, 2024
1 parent 88c8ec7 commit 7a3ec37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tutorial/src/step-2/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The core feature of Vue is **declarative rendering**: using a template syntax th

<div class="composition-api">

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'
Expand Down

0 comments on commit 7a3ec37

Please sign in to comment.