From b2363564abff9eac4d8acf4561fc54a48c09fca8 Mon Sep 17 00:00:00 2001 From: Yuqing Chen Date: Wed, 18 Nov 2020 13:45:16 -0600 Subject: [PATCH] fix: typo (#3388) --- content/docs/reference-react-component.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/reference-react-component.md b/content/docs/reference-react-component.md index 37a5a9b8..510a73a2 100644 --- a/content/docs/reference-react-component.md +++ b/content/docs/reference-react-component.md @@ -417,7 +417,7 @@ Production and development builds of React slightly differ in the way `component On development, the errors will bubble up to `window`, this means that any `window.onerror` or `window.addEventListener('error', callback)` will intercept the errors that have been caught by `componentDidCatch()`. -On production, instead, the errors will not bubble up, which means any ancestor error handler will only receive errors not explictly caught by `componentDidCatch()`. +On production, instead, the errors will not bubble up, which means any ancestor error handler will only receive errors not explicitly caught by `componentDidCatch()`. > Note >