From d1dfe594a99e90021d36867ecad11f0bb6078121 Mon Sep 17 00:00:00 2001 From: Kavinkumar Date: Thu, 27 Oct 2022 12:08:40 +0530 Subject: [PATCH] fix #5210 --- beta/src/content/apis/react/memo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beta/src/content/apis/react/memo.md b/beta/src/content/apis/react/memo.md index 0500a7ed307..8fb5054c468 100644 --- a/beta/src/content/apis/react/memo.md +++ b/beta/src/content/apis/react/memo.md @@ -331,7 +331,7 @@ Avoid doing deep equality checks inside `arePropsEqual` unless you are 100% sure ### `memo(Component, arePropsEqual?)` {/*memo*/} -Call `memo` outside of any components to define a memoized version of a component. This memoized component will usually not be re-rendered when its component is re-rendered as long as its props have not changed. But React may still re-render it: memoization is only a performance optimization, not a guarantee. +Call `memo` outside of any components to define a memoized version of a component. This memoized component will usually not be re-rendered when its parent component is re-rendered as long as its props have not changed. But React may still re-render it: memoization is only a performance optimization, not a guarantee. ```js import { memo } from 'react';