From 75350c9634eff45f6181010b8425f0f2320ec837 Mon Sep 17 00:00:00 2001 From: Davi Mello <51424368+daviavmello@users.noreply.github.com> Date: Mon, 15 Feb 2021 13:08:23 -0500 Subject: [PATCH] Fixing grammar Where it reads "We start of..." should be "We start off..". --- examples/with-context-api/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-context-api/README.md b/examples/with-context-api/README.md index 65ca4dfdfaa9a..0307f1fadb59a 100644 --- a/examples/with-context-api/README.md +++ b/examples/with-context-api/README.md @@ -4,7 +4,7 @@ This example shows how to use react context api in our app. It provides an example of using `pages/_app.js` to include the context api provider and then shows how both the `pages/index.js` and `pages/about.js` can both share the same data using the context api consumer. -We start of by creating two contexts. One that actually never changes (`CounterDispatchContext`) and one that changes more often (`CounterStateContext`). +We start off by creating two contexts. One that actually never changes (`CounterDispatchContext`) and one that changes more often (`CounterStateContext`). The `pages/index.js` shows how to, from the home page, increment and decrement the context data by 1 (a hard code value in the context provider itself).