From 29f7552868fd28676d4474ba4cf024a45862e955 Mon Sep 17 00:00:00 2001 From: Marius Schulz Date: Fri, 9 Aug 2019 17:26:19 +0100 Subject: [PATCH] Fix typo in React v16.9.0 blog post (#2217) "enountered" -> "encountered" --- content/blog/2019-08-08-react-v16.9.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/2019-08-08-react-v16.9.0.md b/content/blog/2019-08-08-react-v16.9.0.md index e691c37a..e83e9375 100644 --- a/content/blog/2019-08-08-react-v16.9.0.md +++ b/content/blog/2019-08-08-react-v16.9.0.md @@ -66,7 +66,7 @@ function FactoryComponent() { This pattern is confusing because it looks too much like a function component — but it isn't one. (A function component would just return the `
` in the above example.) -This pattern was almost never used in the wild, and supporting it causes React to be slightly larger and slower than necessary. So we are deprecating this pattern in 16.9 and logging a warning if it's enountered. If you rely on it, adding `FactoryComponent.prototype = React.Component.prototype` can serve as a workaround. Alternatively, you can convert it to either a class or a function component. +This pattern was almost never used in the wild, and supporting it causes React to be slightly larger and slower than necessary. So we are deprecating this pattern in 16.9 and logging a warning if it's encountered. If you rely on it, adding `FactoryComponent.prototype = React.Component.prototype` can serve as a workaround. Alternatively, you can convert it to either a class or a function component. We don't expect most codebases to be affected by this.