diff --git a/docs/events.html b/docs/events.html index a9bc77d00f..ca0c1e10c4 100644 --- a/docs/events.html +++ b/docs/events.html @@ -103,7 +103,7 @@

As of v0.14, returning false from an event handler will no longer stop event propagation. Instead, e.stopPropagation() or e.preventDefault() should be triggered manually, as appropriate.

-

Event pooling #

+

Event Pooling #

The SyntheticEvent is pooled. This means that the SyntheticEvent object will be reused and all properties will be nullified after the event callback has been invoked. This is for performance reasons. As such, you cannot access the event in an asynchronous way.

diff --git a/docs/forms.html b/docs/forms.html index 653d85216a..a32f3c3cea 100644 --- a/docs/forms.html +++ b/docs/forms.html @@ -80,7 +80,7 @@

Form components such as <input>, <textarea>, and <option> differ from other native components because they can be mutated via user interactions. These components provide interfaces that make it easier to manage forms in response to user interactions.

-

Two types of form components:

+

There are two types of form components: