From f88c75b2fd4641ae18a1601210d3df03461d0348 Mon Sep 17 00:00:00 2001 From: robertgr991 Date: Mon, 12 Aug 2024 12:34:38 +0300 Subject: [PATCH] docs: fix code example typo in essentials/part-6-performance-normalization.md --- docs/tutorials/essentials/part-6-performance-normalization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/essentials/part-6-performance-normalization.md b/docs/tutorials/essentials/part-6-performance-normalization.md index 0d09b5a8f2..7d879d1e2a 100644 --- a/docs/tutorials/essentials/part-6-performance-normalization.md +++ b/docs/tutorials/essentials/part-6-performance-normalization.md @@ -1525,7 +1525,7 @@ export const selectPostsStatus = (state: RootState) => state.posts.status export const selectPostsError = (state: RootState) => state.posts.error // highlight-start -export const addPostsListeners = (startListening: AppStartListening) => { +export const addPostsListeners = (startAppListening: AppStartListening) => { startAppListening({ actionCreator: addNewPost.fulfilled, effect: async (action, listenerApi) => {