From 40251d2e6130a056ecdf532cdfb8629e1b217d1f Mon Sep 17 00:00:00 2001
From: kavinkuma6 <kavinkumar1543884@gmail.com>
Date: Thu, 10 Nov 2022 00:54:53 +0530
Subject: [PATCH] fix #5210 (#5211)

Closes https://github.com/reactjs/reactjs.org/issues/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 08d4456a..867af92a 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';