Skip to content

Commit 7a3ec37

Browse files
author
thanosolo
authored
docs: fix grammar typo of step 2 (#2689)
Changed "are considered" to "is considered".
1 parent 88c8ec7 commit 7a3ec37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tutorial/src/step-2/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The core feature of Vue is **declarative rendering**: using a template syntax th
1010

1111
<div class="composition-api">
1212

13-
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:
13+
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:
1414

1515
```js
1616
import { reactive } from 'vue'

0 commit comments

Comments
 (0)