Skip to content

Commit 1c69ce0

Browse files
fix: fix a typo (#1647)
1 parent 4474c1f commit 1c69ce0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/components/provide-inject.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export default {
241241

242242
When using reactive provide / inject values, **it is recommended to keep any mutations to reactive state inside of the _provider_ whenever possible**. This ensures that the provided state and its possible mutations are co-located in the same component, making it easier to maintain in the future.
243243

244-
There may be times when we need to update the data from a injector component. In such cases, we recommend providing a function that is responsible for mutating the state:
244+
There may be times when we need to update the data from an injector component. In such cases, we recommend providing a function that is responsible for mutating the state:
245245

246246
```vue{7-9,13}
247247
<!-- inside provider component -->

0 commit comments

Comments
 (0)