diff --git a/docs/handling-events.md b/docs/handling-events.md index ab3d3905..27683bf8 100644 --- a/docs/handling-events.md +++ b/docs/handling-events.md @@ -138,4 +138,4 @@ class LoggingButton extends React.Component { } ``` -The problem with this syntax is that a different callback is created each time the `LoggingButton` renders. In most cases, this is fine. However, if this callback is passed as a prop to lower components, those components might do an extra re-rendering. We generally recommend binding in the constructor to avoid this sort of performance problem. +The problem with this syntax is that a different callback is created each time the `LoggingButton` renders. In most cases, this is fine. However, if this callback is passed as a prop to lower components, those components might do an extra re-rendering. We generally recommend binding in the constructor or using the property initializer syntax, to avoid this sort of performance problem.