Skip to content

Commit 83405a3

Browse files
authored
Remove redundancy in reactivity-fundamentals.md
The clause following the 3rd "or" is redundant and may cause confusion. Removing it will make the explanation better match the code example.
1 parent 6ea4166 commit 83405a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/essentials/reactivity-fundamentals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ The `reactive()` API has two limitations:
352352
state = reactive({ count: 1 })
353353
```
354354

355-
It also means that when we assign or destructure a reactive object's property into local variables, or when we pass that property into a function, or destructure properties from a reactive object, we will lose the reactivity connection:
355+
It also means that when we assign or destructure a reactive object's property into local variables, or when we pass that property into a function, we will lose the reactivity connection:
356356

357357
```js
358358
const state = reactive({ count: 0 })

0 commit comments

Comments
 (0)