diff --git a/langs/en/tutorials/stores_context/lesson.md b/langs/en/tutorials/stores_context/lesson.md index cab7d54e..87a36bab 100644 --- a/langs/en/tutorials/stores_context/lesson.md +++ b/langs/en/tutorials/stores_context/lesson.md @@ -1,4 +1,4 @@ -Solid provides a Context API to pass data around without relying on passing through props. This is useful for sharing Signals and Stores. Using Context has the benefit of being created as part of the reactive system and managed by it. Context is also useful when have a need to "override" your state in a certains part of the component tree. +Solid provides a Context API to pass data around without relying on passing through props. This is useful for sharing Signals and Stores. Using Context has the benefit of being created as part of the reactive system and managed by it. Context is also useful when you have a need to "override" your state in a certain part of the component tree. To get started we create a Context object. This object contains a `Provider` component used to inject our data. However, it is common practice to wrap the `Provider` components and `useContext` consumers with versions already configured for the specific Context.