From cd5d2ce10bef4f35442bc615710da4107297aacf Mon Sep 17 00:00:00 2001 From: frankymacster Date: Wed, 28 Nov 2018 14:49:04 -0500 Subject: [PATCH] Update 2018-10-23-react-v-16-6.md (#1428) --- content/blog/2018-10-23-react-v-16-6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/2018-10-23-react-v-16-6.md b/content/blog/2018-10-23-react-v-16-6.md index 6c7d94282..d66d44cbd 100644 --- a/content/blog/2018-10-23-react-v-16-6.md +++ b/content/blog/2018-10-23-react-v-16-6.md @@ -46,7 +46,7 @@ In [React 16.3](/blog/2018/03/29/react-v-16-3.html) we introduced the official C const MyContext = React.createContext(); ``` -We've heard feedback that adopting the new render prop API can be difficult in class components. So we've add a convenience API to [consume a context value from within a class component](/docs/context.html#classcontexttype). +We've heard feedback that adopting the new render prop API can be difficult in class components. So we've added a convenience API to [consume a context value from within a class component](/docs/context.html#classcontexttype). ```js class MyClass extends React.Component {