From 15e8ec6d44ab2d4a2bc798bb3fe4e43f84bb0d3b Mon Sep 17 00:00:00 2001 From: Nitin Surana Date: Mon, 6 May 2019 11:04:47 -0700 Subject: [PATCH] Fix typo (#1325) --- docs/state.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/state.md b/docs/state.md index 68c0fa113..e2fbbb4f8 100644 --- a/docs/state.md +++ b/docs/state.md @@ -99,7 +99,7 @@ _fancy-save-button.marko_ Often the above two approaches are enough, and many people [jump to this part far to quickly](https://medium.com/@dan_abramov/you-might-not-need-redux-be46360cf367). Like ``, often anything stored in redux is `global`. This means that it can (if abused) create components that are hard to reuse, reason about and test. However it is important to understand when a tool like `redux` is useful in any UI library. -Redux provides inderection to updating any state that it controls. This is useful if you need the following: +Redux provides indirection to updating any state that it controls. This is useful if you need the following: - Single state update, multiple actions (eg: logging, computed data, etc). - Time travel debugging and other [redux-specific tooling](https://redux.js.org/introduction/ecosystem).