From efbdec0fe2df725c2debd94b6872f7dfa23417eb Mon Sep 17 00:00:00 2001 From: Abubakr Rizan <74781555+aboo212031@users.noreply.github.com> Date: Tue, 24 Jun 2025 13:04:17 +0530 Subject: [PATCH] fix(curriculum): updated transcript in memoization (#61019) --- .../67d2f4ddb4a4306fdf5bbaee.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/lecture-working-with-data-fetching-and-memoization-in-react/67d2f4ddb4a4306fdf5bbaee.md b/curriculum/challenges/english/25-front-end-development/lecture-working-with-data-fetching-and-memoization-in-react/67d2f4ddb4a4306fdf5bbaee.md index 3b23b324a4f..6f23274bbb7 100644 --- a/curriculum/challenges/english/25-front-end-development/lecture-working-with-data-fetching-and-memoization-in-react/67d2f4ddb4a4306fdf5bbaee.md +++ b/curriculum/challenges/english/25-front-end-development/lecture-working-with-data-fetching-and-memoization-in-react/67d2f4ddb4a4306fdf5bbaee.md @@ -36,7 +36,7 @@ The memoization process happens this way: To improve developer experience with memoization, React provides three tools – `React.memo` (or `memo`), `useMemo` and `useCallback`.  -As you might guess, both `useMemo` and `useCallback` are hooks, but `React.memo` is a component wrapper, a higher-order function (HOC). +As you might guess, both `useMemo` and `useCallback` are hooks, but `React.memo` is a component wrapper, a higher-order component (HOC). In the next lecture, we will take a look at how the `useCallback` hook and `React.memo` work.