From bdfe1ea9ec91258ec06f9e9e1552f26760b31eed Mon Sep 17 00:00:00 2001 From: de-oz <101826623+de-oz@users.noreply.github.com> Date: Wed, 11 Jan 2023 23:02:45 +0300 Subject: [PATCH] Fix wording --- src/guide/components/provide-inject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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