From 04f46c4c5d4e5eb15355b4ef427e2e6b6eccb27e Mon Sep 17 00:00:00 2001 From: Szymon Nowicki Date: Fri, 15 Dec 2017 17:31:42 +0100 Subject: [PATCH] Update reference-react.md Rolled back trailing whitespace. --- content/docs/reference-react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/reference-react.md b/content/docs/reference-react.md index 05b81e01..6320a34c 100644 --- a/content/docs/reference-react.md +++ b/content/docs/reference-react.md @@ -73,7 +73,7 @@ See the [React.Component API Reference](/docs/react-component.html) for a list o `React.PureComponent` is exactly like [`React.Component`](#reactcomponent), but implements [`shouldComponentUpdate()`](/docs/react-component.html#shouldcomponentupdate) with a shallow prop and state comparison, which [`React.Component`](#reactcomponent) is missing completely. -If your React component's `render()` function renders the same result given the same props and state, you can use `React.PureComponent` for a performance boost in some cases. +If your React component's `render()` function renders the same result given the same props and state, you can use `React.PureComponent` for a performance boost in some cases. > Note >