From 3b600993e91d42d1569994964e9a13606edccdf0 Mon Sep 17 00:00:00 2001 From: MattAurich Date: Sat, 28 Apr 2018 18:27:51 -0500 Subject: [PATCH] Update Reducers.md to be a bit more succinct (#2970) "describe the fact that *something happened*" can be nothing more than a BEEP that is irregular and inconsistent in it's response to an input, while an action (that is of any use beyond a '*' (all)) is going to describe (as defined by the author) *what happened*, through a series of one or more descriptors/data points. --- docs/basics/Reducers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics/Reducers.md b/docs/basics/Reducers.md index fb0f39e502..57e0715c7e 100644 --- a/docs/basics/Reducers.md +++ b/docs/basics/Reducers.md @@ -1,6 +1,6 @@ # Reducers -**Reducers** specify how the application's state changes in response to [actions](./Actions.md) sent to the store. Remember that actions only describe the fact that *something happened*, but don't describe how the application's state changes. +**Reducers** specify how the application's state changes in response to [actions](./Actions.md) sent to the store. Remember that actions only describe *what happened*, but don't describe how the application's state changes. ## Designing the State Shape