Skip to content

Minor help text improvements #490

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 14, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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).