diff --git a/src/guide/components/provide-inject.md b/src/guide/components/provide-inject.md index 44617f8403..337a3658c8 100644 --- a/src/guide/components/provide-inject.md +++ b/src/guide/components/provide-inject.md @@ -274,7 +274,7 @@ const { location, updateLocation } = inject('location') ``` -Finally, you can wrap the provided value with [`readonly()`](/api/reactivity-core.html#readonly) if you want to ensure that the data passed through `provide` cannot be mutated by the injected component. +Finally, you can wrap the provided value with [`readonly()`](/api/reactivity-core.html#readonly) if you want to ensure that the data passed through `provide` cannot be mutated by the injector component. ```vue