Skip to content

Commit

Permalink
Merge pull request reduxjs#490 from mindjuice/patch-8
Browse files Browse the repository at this point in the history
Minor help text improvements
  • Loading branch information
gaearon committed Aug 14, 2015
2 parents b868ad7 + ff57914 commit 0e36dfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/basics/Store.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Store

In the previous steps, we have defined the [actions](Action.md) that represent the facts about “what happened” and the [reducers](Reducers.md) that update the state according to those actions.
In the previous sections, we defined the [actions](Action.md) that represent the facts about “what happened” and the [reducers](Reducers.md) that update the state according to those actions.

**Store** is an object that brings them together. The store has the following responsibilities:
The **Store** is the object that brings them together. The store has the following responsibilities:

* Holds application state;
* Allows access to state via [`getState()`](../api/Store.md#getState);
Expand Down Expand Up @@ -72,4 +72,4 @@ let store = createStore(todoApp);

## Next Steps

Before creating a UI for our todo app, we will take a detour to [how the data flows in a Redux application](DataFlow.md).
Before creating a UI for our todo app, we will take a detour to see [how the data flows in a Redux application](DataFlow.md).

0 comments on commit 0e36dfb

Please sign in to comment.