From 5df573a518da18747ab1d57b1f32ecf7bf4931ae Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Tue, 22 Nov 2016 12:09:07 +0100 Subject: [PATCH] Fix link to `PureComponent` in docs (#8375) --- docs/reference-pure-render-mixin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference-pure-render-mixin.md b/docs/reference-pure-render-mixin.md index 221bc4f5..4b2e5a43 100644 --- a/docs/reference-pure-render-mixin.md +++ b/docs/reference-pure-render-mixin.md @@ -8,7 +8,7 @@ permalink: docs/pure-render-mixin.html > Note -> The `PureRenderMixin` mixin predates `React.PureComponent`. This reference doc is provided for legacy purposes, and you should consider using [`React.PureComponent`](/react/docs/component-api.html#react.purecomponent) instead. +> The `PureRenderMixin` mixin predates `React.PureComponent`. This reference doc is provided for legacy purposes, and you should consider using [`React.PureComponent`](/react/docs/react-api.html#react.purecomponent) instead. If your React component's render function renders the same result given the same props and state, you can use this mixin for a performance boost in some cases.