Skip to content

Commit 373929e

Browse files
authored
Fix small typo (vuejs#227)
1 parent 8d7a1bc commit 373929e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/reactivity-fundamentals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can learn more about `reactive` in the [Basic Reactivity API's](../api/basic
2323

2424
## Creating Standalone Reactive Values as `refs`
2525

26-
Imagine the case where we have a standalone primitive value (for example, a string) and we want to make it reactive. Of course, we could make am object with a single property equal to our string, and pass it to `reactive`. Vue has a method that will do the same for us - it's a `ref`:
26+
Imagine the case where we have a standalone primitive value (for example, a string) and we want to make it reactive. Of course, we could make an object with a single property equal to our string, and pass it to `reactive`. Vue has a method that will do the same for us - it's a `ref`:
2727

2828
```js
2929
import { ref } from 'vue'

0 commit comments

Comments
 (0)