From 630d3363558e830218091ed6c9a183d86aada2bd Mon Sep 17 00:00:00 2001 From: Ken Date: Mon, 4 Mar 2019 11:46:17 -0800 Subject: [PATCH] fixing some wording on problems to be solved --- step2-04/demo/README.md | 2 +- step2-05/demo/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/step2-04/demo/README.md b/step2-04/demo/README.md index fda2fc8..3b0cc06 100644 --- a/step2-04/demo/README.md +++ b/step2-04/demo/README.md @@ -27,7 +27,7 @@ In a real application, these functions are composed. It looks more like this: 1. Data needs to be passed down from component to component via props. Even when some components do not need to know about some data. This is a problem called **props drilling** -2. There is a lack of coordination of changes that can happen to the data +2. Shared data can be changed by various actors (user interaction, updates from server), and there is no coordination of these changes Even in our simple application, we saw this problem. For example, `` has this props interface: diff --git a/step2-05/demo/README.md b/step2-05/demo/README.md index 7757fb7..a53cdc5 100644 --- a/step2-05/demo/README.md +++ b/step2-05/demo/README.md @@ -17,7 +17,7 @@ In this step, we will look at solving the problems of complex application (as me As a reminder, the problem that we want to address are: 1. Data needs to be passed down from component to component via props. Even when some components do not need to know about some data. -2. There is a lack of coordination of changes that can happen to the data +2. Shared data can be changed by various actors (user interaction, updates from server), and there is no coordination of these changes Redux is an implementation of the Flux architectural pattern: