From fc6e864f1d425026bf5b5a1ca36f9d9c86a274e5 Mon Sep 17 00:00:00 2001 From: zytjs Date: Mon, 16 Nov 2020 18:50:53 +0800 Subject: [PATCH] Update legacy-event-pooling.md (#3380) --- content/docs/legacy-event-pooling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/legacy-event-pooling.md b/content/docs/legacy-event-pooling.md index 0ba91e9d..8fb19c3b 100644 --- a/content/docs/legacy-event-pooling.md +++ b/content/docs/legacy-event-pooling.md @@ -12,7 +12,7 @@ permalink: docs/legacy-event-pooling.html > >[Read more](/blog/2020/08/10/react-v17-rc.html#no-event-pooling) about this change in React 17. -The [`SyntheticEvent`](/docs/events.html) objects are pooled. This means that the `SyntheticEvent` object will be reused and all properties will be nullified after the event event handler has been called. For example, this won't work: +The [`SyntheticEvent`](/docs/events.html) objects are pooled. This means that the `SyntheticEvent` object will be reused and all properties will be nullified after the event handler has been called. For example, this won't work: ```javascript function handleChange(e) {