From ecdedaf778d19a1cb59837d5743004b423f08900 Mon Sep 17 00:00:00 2001 From: Edward <76019273+SanariSan@users.noreply.github.com> Date: Sun, 17 Apr 2022 23:55:40 +0300 Subject: [PATCH] Typo fix --- docs/introduction/why-rtk-is-redux-today.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introduction/why-rtk-is-redux-today.md b/docs/introduction/why-rtk-is-redux-today.md index bd4a48adca..827022e43e 100644 --- a/docs/introduction/why-rtk-is-redux-today.md +++ b/docs/introduction/why-rtk-is-redux-today.md @@ -67,7 +67,7 @@ export const addTodo = text => ({ }) export const todoToggled = id => ({ - type: ADD_TODO, + type: TODO_TOGGLED, payload: id })