Skip to content

Commit 1ae2abd

Browse files
committed
fix: missing dot
1 parent 903c88c commit 1ae2abd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/component-edge-cases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Thanks to Vue's Reactivity system, it always knows when to update (if you use it
1212

1313
### Forcing an Update
1414

15-
If you find yourself needing to force an update in Vue, in 99.99% of cases, you've made a mistake somewhere For example, you may be relying on state that isn't tracked by Vue's reactivity system, e.g. with `data` property added after component creation.
15+
If you find yourself needing to force an update in Vue, in 99.99% of cases, you've made a mistake somewhere. For example, you may be relying on state that isn't tracked by Vue's reactivity system, e.g. with `data` property added after component creation.
1616

1717
However, if you've ruled out the above and find yourself in this extremely rare situation of having to manually force an update, you can do so with [`$forceUpdate`](../api/instance-methods.html#forceupdate).
1818

0 commit comments

Comments
 (0)