From 7c38b2c89b9669a3998fb2020e7c344eb0eda23b Mon Sep 17 00:00:00 2001
From: Durgesh Agrawal <33284183+durgeshra@users.noreply.github.com>
Date: Fri, 23 Mar 2018 11:02:30 +0530
Subject: [PATCH] fix(seed): Fix typo in redux.json (#16935)
Closes #16920
---
challenges/03-front-end-libraries/redux.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/challenges/03-front-end-libraries/redux.json b/challenges/03-front-end-libraries/redux.json
index c56a4ee39d..b29928d515 100644
--- a/challenges/03-front-end-libraries/redux.json
+++ b/challenges/03-front-end-libraries/redux.json
@@ -165,7 +165,7 @@
"title": "Dispatch an Action Event",
"releasedOn": "December 25, 2017",
"description": [
- "od is what you use to dispatch actions to the Redux store. Calling store.dispatch()
and passing the value returned from an action creator sends an action back to the store.",
+ "dispatch
method is what you use to dispatch actions to the Redux store. Calling store.dispatch()
and passing the value returned from an action creator sends an action back to the store.",
"Recall that action creators return an object with a type property that specifies the action that has occurred. Then the method dispatches an action object to the Redux store. Based on the previous challenge's example, the following lines are equivalent, and both dispatch the action of type LOGIN
:",
"
store.dispatch(actionCreator());", "
store.dispatch({ type: 'LOGIN' });